Add debug info to websocket conns

PUBLISHED_FROM=7454716e089be5c54359113cc188215e2475ea29
This commit is contained in:
Deomid Ryabkov 2016-03-22 12:50:29 +00:00 committed by rojer
parent a55c48a4ce
commit 3b345a81c4

View File

@ -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,
size_t len) {
struct ws_mask_ctx ctx;
DBG(("%p %d %d", nc, op, (int) len));
mg_send_ws_header(nc, op, len, &ctx);
mg_send(nc, data, len);
@ -4846,6 +4847,7 @@ static void mg_ws_handshake(struct mg_connection *nc,
"Connection: Upgrade\r\n"
"Sec-WebSocket-Accept: ",
b64_sha, "\r\n\r\n");
DBG(("%p %.*s %s", nc, (int) key->len, key->p, b64_sha));
}
#endif /* MG_DISABLE_HTTP_WEBSOCKET */