summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgnacio Casal Quinteiro <icq@gnome.org>2016-10-17 17:49:55 +0200
committerIgnacio Casal Quinteiro <icq@gnome.org>2016-10-18 17:29:00 +0200
commit2bf701433c5892456109b61b60badea8afdfb8e8 (patch)
tree9448983a6c3e76ca6444dc6ae4b3fd28c75e7ace
parent30d56bb34f577e67513584b80ccf25a807e73000 (diff)
downloadlibsoup-2bf701433c5892456109b61b60badea8afdfb8e8.tar.gz
websocket-connection: log when getting a pong message
-rw-r--r--libsoup/soup-websocket-connection.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libsoup/soup-websocket-connection.c b/libsoup/soup-websocket-connection.c
index 8901941f..46257168 100644
--- a/libsoup/soup-websocket-connection.c
+++ b/libsoup/soup-websocket-connection.c
@@ -586,6 +586,7 @@ process_contents (SoupWebsocketConnection *self,
receive_ping (self, payload, payload_len);
break;
case 0x0A:
+ g_debug ("received pong message");
break;
default:
g_debug ("received unsupported control frame: %d", (int)opcode);