Lines Matching defs:info
44 struct lws_context_creation_info info;
63 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
64 info.port = 7681;
65 info.mounts = &mount;
66 info.error_document_404 = "/404.html";
67 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT |
69 info.ssl_cert_filepath = "localhost-100y.cert";
70 info.ssl_private_key_filepath = "localhost-100y.key";
72 context = lws_create_context(&info);