From 629e356bb2e25f16f6714cdd96e7b26aafe4e68f Mon Sep 17 00:00:00 2001 From: Andy Green Date: Wed, 22 Mar 2017 21:18:48 +0800 Subject: [PATCH] test-server-v2.0: disable setting default protocol --- test-server/test-server-v2.0.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test-server/test-server-v2.0.c b/test-server/test-server-v2.0.c index e3174dd..6041e70 100644 --- a/test-server/test-server-v2.0.c +++ b/test-server/test-server-v2.0.c @@ -148,13 +148,14 @@ static const struct lws_http_mount mount = { * the effect is to set this protocol to be the default one for the vhost, * ie, selected if no Protocol: header is sent with the ws upgrade. */ - +#if 0 static const struct lws_protocol_vhost_options pvo_opt = { NULL, NULL, "default", "1" }; +#endif static const struct lws_protocol_vhost_options pvo_opt4a = { NULL, @@ -205,7 +206,7 @@ static const struct lws_protocol_vhost_options pvo_1 = { static const struct lws_protocol_vhost_options pvo = { &pvo_1, - &pvo_opt, + NULL, // &pvo_opt, "dumb-increment-protocol", "" }; -- 2.7.4