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

clean uri arg dump

Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
Andy Green 2015-12-18 10:46:24 +08:00
parent e70c63ba8f
commit 4588e4e415

View file

@ -137,15 +137,10 @@ int callback_http(struct lws *wsi, enum lws_callback_reasons reason, void *user,
dump_handshake_info(wsi); dump_handshake_info(wsi);
/* dump the individual URI Arg parameters */ /* dump the individual URI Arg parameters */
m = 1;
n = 0; n = 0;
while (m > 0) { while (lws_hdr_copy_fragment(wsi, buf, sizeof(buf),
m = lws_hdr_copy_fragment(wsi, buf, sizeof(buf), WSI_TOKEN_HTTP_URI_ARGS, n) > 0) {
WSI_TOKEN_HTTP_URI_ARGS, n); lwsl_info("URI Arg %d: %s\n", ++n, buf);
if (m < 0)
continue;
n++;
lwsl_info("URI Arg %d: %s\n", n, buf);
} }
if (len < 1) { if (len < 1) {