last commit?

Fork of WebSocketClient by Éric Poirier

Revision:
8:19f2477d83ad
Parent:
7:4567996414a5
Child:
9:ab516dfaf969
diff -r 4567996414a5 -r 19f2477d83ad Websocket.cpp
--- a/Websocket.cpp	Fri Feb 08 12:33:04 2013 +0000
+++ b/Websocket.cpp	Tue Dec 05 15:05:20 2017 +0000
@@ -4,7 +4,7 @@
 #define MAX_TRY_READ 10
 
 //Debug is disabled by default
-#if 0
+#if 1
 #define DBG(x, ...) std::printf("[WebSocket : DBG]"x"\r\n", ##__VA_ARGS__); 
 #define WARN(x, ...) std::printf("[WebSocket : WARN]"x"\r\n", ##__VA_ARGS__); 
 #define ERR(x, ...) std::printf("[WebSocket : ERR]"x"\r\n", ##__VA_ARGS__); 
@@ -231,7 +231,7 @@
     char mask[4] = {0, 0, 0, 0};
     bool is_masked = false;
     Timer tmr;
-
+    //DBG("START READ")
     // read the opcode
     tmr.start();
     while (true) {
@@ -249,6 +249,7 @@
         socket.set_blocking(false, 1);
         if (socket.receive(&opcode, 1) != 1) {
             socket.set_blocking(false, 2000);
+            DBG("bad opcode?: 0x%X\r\n", opcode);
             return false;
         }