Lines Matching defs:info
198 struct lws_context_creation_info info;
216 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
217 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
218 info.port = CONTEXT_PORT_NO_LISTEN; /* we do not run any server */
219 info.protocols = protocols;
220 info.pvo = &pvo;
226 info.client_ssl_ca_filepath = "./libwebsockets.org.cer";
245 info.options = 0;
263 info.fd_limit_per_thread = (unsigned int)(1 + concurrent + 1);
265 context = lws_create_context(&info);