diff --git a/lib/webfuse/impl/server.c b/lib/webfuse/impl/server.c index 3f3fe8c..9242d08 100644 --- a/lib/webfuse/impl/server.c +++ b/lib/webfuse/impl/server.c @@ -54,7 +54,6 @@ static struct lws_context * wf_impl_server_context_create( server->info.mounts = &server->mount; server->info.protocols = server->ws_protocols; server->info.vhost_name = server->config.vhost_name; - server->info.ws_ping_pong_interval = 10; server->info.options = LWS_SERVER_OPTION_HTTP_HEADERS_SECURITY_BEST_PRACTICES_ENFORCE; server->info.options |= LWS_SERVER_OPTION_EXPLICIT_VHOSTS; diff --git a/test/webfuse/test_util/server_protocol.cc b/test/webfuse/test_util/server_protocol.cc index 0f2a655..27de227 100644 --- a/test/webfuse/test_util/server_protocol.cc +++ b/test/webfuse/test_util/server_protocol.cc @@ -85,7 +85,6 @@ ServerProtocol::Private::Private() info.port = 0; info.protocols = protocols; info.vhost_name = "localhost"; - info.ws_ping_pong_interval = 10; info.options = LWS_SERVER_OPTION_HTTP_HEADERS_SECURITY_BEST_PRACTICES_ENFORCE; info.options |= LWS_SERVER_OPTION_EXPLICIT_VHOSTS; diff --git a/test/webfuse/test_util/ws_server.cc b/test/webfuse/test_util/ws_server.cc index 2e50a35..90a0b99 100644 --- a/test/webfuse/test_util/ws_server.cc +++ b/test/webfuse/test_util/ws_server.cc @@ -153,7 +153,6 @@ WsServer::Private::Private( info.mounts = NULL; info.protocols =ws_protocols; info.vhost_name = "localhost"; - info.ws_ping_pong_interval = 10; info.options = LWS_SERVER_OPTION_HTTP_HEADERS_SECURITY_BEST_PRACTICES_ENFORCE; info.options |= LWS_SERVER_OPTION_EXPLICIT_VHOSTS;