Lines Matching defs:info
90 struct lws_context_creation_info info;
109 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
110 info.port = 7681;
111 info.mounts = &mount;
112 info.protocols = protocols;
113 info.vhost_name = "localhost";
114 info.options =
120 info.options |= LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
121 info.ssl_cert_filepath = "localhost-100y.cert";
122 info.ssl_private_key_filepath = "localhost-100y.key";
127 info.options |= LWS_SERVER_OPTION_VHOST_UPG_STRICT_HOST_CHECK;
130 info.retry_and_idle_policy = &retry;
132 context = lws_create_context(&info);