Lines Matching defs:info
251 * There's no cached info, we have to start from scratch on
401 lwsl_err("%s: unable to get any info\n", __func__);
421 struct lws_context_creation_info info;
562 memset(&info, 0, sizeof(info));
563 info.vhost_name = vhtag;
564 info.port = CONTEXT_PORT_NO_LISTEN;
565 info.options = cx->options;
573 info.client_ssl_ca_mem = der;
574 info.client_ssl_ca_mem_len = (unsigned int)der_len;
577 info.client_ssl_ca_mem = inf->der[0];
578 info.client_ssl_ca_mem_len = (unsigned int)inf->der_len[0];
583 lws_tls_jit_trust_cert_info(info.client_ssl_ca_mem,
584 info.client_ssl_ca_mem_len);
587 info.protocols = cx->protocols_copy;
589 v = lws_create_vhost(cx, &info);