Lines Matching defs:info
76 struct lws_context_creation_info info;
97 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
98 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
99 info.port = CONTEXT_PORT_NO_LISTEN; /* we do not run any server */
100 info.protocols = protocols;
101 info.timeout_secs = 10;
102 info.connect_timeout_secs = 30;
108 info.client_ssl_ca_filepath = "./libwebsockets.org.cer";
118 info.fd_limit_per_thread = 1 + 1 + 1;
120 context = lws_create_context(&info);