From: Andy Green Date: Wed, 22 Mar 2017 13:18:48 +0000 (+0800) Subject: test-server-v2.0: disable setting default protocol X-Git-Tag: upstream/2.3.0~163 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=629e356bb2e25f16f6714cdd96e7b26aafe4e68f;p=platform%2Fupstream%2Flibwebsockets.git test-server-v2.0: disable setting default protocol --- diff --git a/test-server/test-server-v2.0.c b/test-server/test-server-v2.0.c index e3174dde..6041e70e 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", "" };