From: Andy Green Date: Wed, 26 Jul 2017 23:29:56 +0000 (+0800) Subject: test-server-libuv: add lws_meta X-Git-Tag: accepted/tizen/4.0/unified/20171012.191640~20 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Flibwebsockets.git;a=commitdiff_plain;h=41c15511eb7a0d7f549aeae7a178fef2a6fbbee5 test-server-libuv: add lws_meta --- diff --git a/test-server/test-server-libuv.c b/test-server/test-server-libuv.c index df8a684..c8b305f 100644 --- a/test-server/test-server-libuv.c +++ b/test-server/test-server-libuv.c @@ -50,6 +50,7 @@ void test_server_unlock(int care) #include "../plugins/protocol_dumb_increment.c" #include "../plugins/protocol_lws_mirror.c" #include "../plugins/protocol_lws_status.c" +#include "../plugins/protocol_lws_meta.c" /* * This demo server shows how to use libwebsockets for one or more @@ -73,6 +74,7 @@ enum demo_protocols { PROTOCOL_DUMB_INCREMENT, PROTOCOL_LWS_MIRROR, PROTOCOL_LWS_STATUS, + PROTOCOL_LWS_META, /* always last */ DEMO_PROTOCOL_COUNT @@ -92,6 +94,7 @@ static struct lws_protocols protocols[] = { LWS_PLUGIN_PROTOCOL_DUMB_INCREMENT, LWS_PLUGIN_PROTOCOL_MIRROR, LWS_PLUGIN_PROTOCOL_LWS_STATUS, + LWS_PLUGIN_PROTOCOL_LWS_META, { NULL, NULL, 0, 0 } /* terminator */ };