Lines Matching defs:info
95 struct lws_context_creation_info info;
106 siga.sa_flags |= SA_SIGINFO; // get detail info
116 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
117 lws_cmdline_option_handle_builtin(argc, argv, &info);
120 info.port = 7681;
122 info.port = atoi(p);
123 info.mounts = &mount;
124 info.error_document_404 = "/404.html";
125 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT |
127 info.ssl_cert_filepath = "localhost-100y.cert";
128 info.ssl_private_key_filepath = "localhost-100y.key";
129 info.fo_listen_queue = 32;
132 info.plugin_dirs = plugin_dirs;
136 info.options |= LWS_SERVER_OPTION_VHOST_UPG_STRICT_HOST_CHECK;
138 context = lws_create_context(&info);