Lines Matching defs:info
78 struct lws_context_creation_info info;
97 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
98 info.port = 7681;
99 info.mounts = &mount;
100 info.options =
103 info.count_threads = (unsigned int)atoi(p);
104 if (info.count_threads < 1 || info.count_threads > LWS_MAX_SMP)
107 info.count_threads = COUNT_THREADS;
111 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
112 info.ssl_cert_filepath = "localhost-100y.cert";
113 info.ssl_private_key_filepath = "localhost-100y.key";
117 context = lws_create_context(&info);