Lines Matching defs:info
191 * that was passed in the creation info struct. Stash it in our private part
407 struct lws_context_creation_info info;
425 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
426 info.port = 7681;
427 info.mounts = &mount;
428 info.error_document_404 = "/404.html";
429 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT |
432 info.event_lib_custom = &evlib_custom; /* bind lws to our custom event
436 info.foreign_loops = foreign_loops;
439 info.protocols = protocols;
441 context = lws_create_context(&info);