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

test-server-libuv: add lws_meta

This commit is contained in:
Andy Green 2017-07-27 07:29:56 +08:00
parent d766c99861
commit 41c15511eb

View file

@ -50,6 +50,7 @@ void test_server_unlock(int care)
#include "../plugins/protocol_dumb_increment.c" #include "../plugins/protocol_dumb_increment.c"
#include "../plugins/protocol_lws_mirror.c" #include "../plugins/protocol_lws_mirror.c"
#include "../plugins/protocol_lws_status.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 * This demo server shows how to use libwebsockets for one or more
@ -73,6 +74,7 @@ enum demo_protocols {
PROTOCOL_DUMB_INCREMENT, PROTOCOL_DUMB_INCREMENT,
PROTOCOL_LWS_MIRROR, PROTOCOL_LWS_MIRROR,
PROTOCOL_LWS_STATUS, PROTOCOL_LWS_STATUS,
PROTOCOL_LWS_META,
/* always last */ /* always last */
DEMO_PROTOCOL_COUNT DEMO_PROTOCOL_COUNT
@ -92,6 +94,7 @@ static struct lws_protocols protocols[] = {
LWS_PLUGIN_PROTOCOL_DUMB_INCREMENT, LWS_PLUGIN_PROTOCOL_DUMB_INCREMENT,
LWS_PLUGIN_PROTOCOL_MIRROR, LWS_PLUGIN_PROTOCOL_MIRROR,
LWS_PLUGIN_PROTOCOL_LWS_STATUS, LWS_PLUGIN_PROTOCOL_LWS_STATUS,
LWS_PLUGIN_PROTOCOL_LWS_META,
{ NULL, NULL, 0, 0 } /* terminator */ { NULL, NULL, 0, 0 } /* terminator */
}; };