Lines Matching refs:info
135 struct lws_context_creation_info info;
148 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
149 info.port = 7681;
150 info.mounts = &mount;
151 info.pvo = &pvo;
152 info.protocols = protocols;
153 info.error_document_404 = "/404.html";
154 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT |
157 info.ssl_cert_filepath = "localhost-100y.cert";
158 info.ssl_private_key_filepath = "localhost-100y.key";
161 context = lws_create_context(&info);