Lines Matching refs:info
275 struct lws_context_creation_info info;
294 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
295 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT |
301 info.max_http_header_pool = 1;
303 context = lws_create_context(&info);
311 info.port = 7681;
312 info.pprotocols = pprotocols;
313 info.mounts = &mount;
314 info.vhost_name = "http";
316 if (!lws_create_vhost(context, &info)) {
323 info.port = 7682;
324 info.error_document_404 = "/404.html";
326 info.ssl_cert_filepath = "localhost-100y.cert";
327 info.ssl_private_key_filepath = "localhost-100y.key";
329 info.vhost_name = "localhost";
331 if (!lws_create_vhost(context, &info)) {