We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 384a35e commit d6fd1a4Copy full SHA for d6fd1a4
1 file changed
README.md
@@ -113,4 +113,21 @@ and send binary string
113
114
```c
115
write(sock, frame, frame_len);
116
-```
+```
117
+
118
+### UID
119
120
+Macro WEBSOCKET_UUID contains unique ID for handshake
121
122
+```c
123
+#define WEBSOCKET_UUID "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
124
125
126
+### Test frame
127
128
+Raw frame: `\x81\x8Amask\x0B\x13\x12\x06\x08\x41\x17\x0A\x19\x00`
129
+Has mask: yes
130
+Mask: `mask`
131
+Payload: `frame data`
132
+Fin: yes
133
+Opcode: `WS_OP_TEXT`
0 commit comments