Lines Matching defs:info
343 struct lws_context_creation_info info;
355 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
356 lws_cmdline_option_handle_builtin(argc, argv, &info);
360 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT |
362 info.port = CONTEXT_PORT_NO_LISTEN; /* we do not run any server */
363 info.protocols = protocols;
364 info.user = &args;
365 info.register_notifier_list = na;
366 info.connect_timeout_secs = 30;
369 info.http_nsc_filepath = "./cookies.txt";
371 info.http_nsc_filepath = p;
381 info.fd_limit_per_thread = 1 + 1 + 1;
390 info.client_ssl_ca_filepath = "./wrong.cer";
392 info.client_ssl_ca_filepath = "./warmcat.com.cer";
397 info.client_ssl_ca_mem_len = read(n, memcert, sizeof(memcert));
398 info.client_ssl_ca_mem = memcert;
401 memcert[info.client_ssl_ca_mem_len++] = '\0';
404 context = lws_create_context(&info);