1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

Pass URI length to LWS_CALLBACK_HTTP.

This commit is contained in:
David Galeano 2013-01-10 10:13:19 +08:00 committed by Andy Green
parent c72f6f9fa0
commit 584b316700

View file

@ -588,7 +588,8 @@ libwebsocket_read(struct libwebsocket_context *context,
if (wsi->protocol->callback)
(wsi->protocol->callback)(context, wsi,
LWS_CALLBACK_HTTP, wsi->user_space,
wsi->utf8_token[WSI_TOKEN_GET_URI].token, 0);
wsi->utf8_token[WSI_TOKEN_GET_URI].token,
wsi->utf8_token[WSI_TOKEN_GET_URI].token_len);
return 0;
}