From 96aa7e6a99232b2836b2943ffdd8af5a10b7fa10 Mon Sep 17 00:00:00 2001 From: David Galeano Date: Thu, 10 Jan 2013 10:38:21 +0800 Subject: [PATCH] Added support for continuation frames on the server. --- lib/parsers.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/parsers.c b/lib/parsers.c index 1564cd89..64bdb658 100644 --- a/lib/parsers.c +++ b/lib/parsers.c @@ -779,6 +779,7 @@ spill: wsi->rx_user_buffer_head = 0; return 0; + case LWS_WS_OPCODE_07__CONTINUATION: case LWS_WS_OPCODE_07__TEXT_FRAME: case LWS_WS_OPCODE_07__BINARY_FRAME: break;