From 3156ac9791db9abd86b30e30a15368ed5f20d53a Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Wed, 25 Sep 2013 14:25:14 +0100 Subject: [PATCH] read_websocket(): check for WEBSOCKET_OPCODE_CLOSE corrected --- mongoose.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mongoose.c b/mongoose.c index c0b6f5c45..b04acc4ac 100644 --- a/mongoose.c +++ b/mongoose.c @@ -16,6 +16,8 @@ // license, as set out in <http://cesanta.com/products.html>. #if defined(_WIN32) +#undef _UNICODE +#define _MBCS #if !defined(_CRT_SECURE_NO_WARNINGS) #define _CRT_SECURE_NO_WARNINGS // Disable deprecation warning in VS2005 #endif @@ -4138,7 +4140,7 @@ static void read_websocket(struct mg_connection *conn) { // Exit the loop if callback signalled to exit, // or "connection close" opcode received. - if ((bits & WEBSOCKET_OPCODE_CONNECTION_CLOSE) || + if (((bits & 0x0f) == WEBSOCKET_OPCODE_CONNECTION_CLOSE) || (conn->ctx->callbacks.websocket_data != NULL && !conn->ctx->callbacks.websocket_data(conn, bits, data, data_len))) { stop = 1; -- GitLab