Lines Matching defs:info
28 static struct lws_context_creation_info info;
192 info.foreign_loops = foreign_loops;
194 context = lws_create_context(&info);
241 * We prepare the info here, but don't use it until later in the
246 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
247 info.port = 7681;
249 info.port = atoi(p);
250 info.mounts = &mount;
251 info.error_document_404 = "/404.html";
252 info.pcontext = &context;
253 info.protocols = protocols;
254 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT |
258 info.ssl_cert_filepath = "localhost-100y.cert";
259 info.ssl_private_key_filepath = "localhost-100y.key";
269 info.options |= LWS_SERVER_OPTION_LIBUV;
276 info.options |= LWS_SERVER_OPTION_LIBEVENT;
283 info.options |= LWS_SERVER_OPTION_LIBEV;
290 info.options |= LWS_SERVER_OPTION_GLIB;
297 info.options |= LWS_SERVER_OPTION_SDEVENT;
304 info.options |= LWS_SERVER_OPTION_ULOOP;