Fix compilaton with gcc 4.4.x

Closes #204

Signed-off-by: Christian Beier <dontmind@freeshell.org>
pull/3/head
DRC 6 years ago committed by Christian Beier
parent a83439b9fb
commit 7063f607e4
No known key found for this signature in database
GPG Key ID: 421BB3B45C6067F8

@ -110,7 +110,7 @@ typedef struct ws_header_data_s {
unsigned char fin; unsigned char fin;
} ws_header_data_t; } ws_header_data_t;
typedef struct ws_ctx_s { struct ws_ctx_s {
char codeBufDecode[2048 + WSHLENMAX]; /* base64 + maximum frame header length */ char codeBufDecode[2048 + WSHLENMAX]; /* base64 + maximum frame header length */
char codeBufEncode[B64LEN(UPDATE_BUF_SIZE) + WSHLENMAX]; /* base64 + maximum frame header length */ char codeBufEncode[B64LEN(UPDATE_BUF_SIZE) + WSHLENMAX]; /* base64 + maximum frame header length */
char *writePos; char *writePos;
@ -126,7 +126,7 @@ typedef struct ws_ctx_s {
wsEncodeFunc encode; wsEncodeFunc encode;
wsDecodeFunc decode; wsDecodeFunc decode;
ctxInfo_t ctxInfo; ctxInfo_t ctxInfo;
} ws_ctx_t; };
enum enum
{ {

Loading…
Cancel
Save