Lines Matching defs:info
313 struct lws_context_creation_info info;
318 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */
319 lws_cmdline_option_handle_builtin(argc, argv, &info);
323 info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
328 info.port = CONTEXT_PORT_NO_LISTEN; /* we do not run any server */
329 info.protocols = protocols;
330 info.register_notifier_list = na;
331 info.fd_limit_per_thread = 1 + 1 + 1;
332 info.retry_and_idle_policy = &retry;
339 info.client_ssl_ca_filepath = "./mosq-ca.crt";
342 context = lws_create_context(&info);