mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-28 23:49:44 +08:00
Add debug info to websocket conns
PUBLISHED_FROM=7454716e089be5c54359113cc188215e2475ea29
This commit is contained in:
parent
a55c48a4ce
commit
3b345a81c4
@ -4754,6 +4754,7 @@ static void mg_ws_mask_frame(struct mbuf *mbuf, struct ws_mask_ctx *ctx) {
|
|||||||
void mg_send_websocket_frame(struct mg_connection *nc, int op, const void *data,
|
void mg_send_websocket_frame(struct mg_connection *nc, int op, const void *data,
|
||||||
size_t len) {
|
size_t len) {
|
||||||
struct ws_mask_ctx ctx;
|
struct ws_mask_ctx ctx;
|
||||||
|
DBG(("%p %d %d", nc, op, (int) len));
|
||||||
mg_send_ws_header(nc, op, len, &ctx);
|
mg_send_ws_header(nc, op, len, &ctx);
|
||||||
mg_send(nc, data, len);
|
mg_send(nc, data, len);
|
||||||
|
|
||||||
@ -4846,6 +4847,7 @@ static void mg_ws_handshake(struct mg_connection *nc,
|
|||||||
"Connection: Upgrade\r\n"
|
"Connection: Upgrade\r\n"
|
||||||
"Sec-WebSocket-Accept: ",
|
"Sec-WebSocket-Accept: ",
|
||||||
b64_sha, "\r\n\r\n");
|
b64_sha, "\r\n\r\n");
|
||||||
|
DBG(("%p %.*s %s", nc, (int) key->len, key->p, b64_sha));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* MG_DISABLE_HTTP_WEBSOCKET */
|
#endif /* MG_DISABLE_HTTP_WEBSOCKET */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user