Lines Matching defs:info
734 static struct lws_context_creation_info info;
738 /* info is on the stack, it must be cleared down before use */
739 memset(&info, 0, sizeof(info));
750 info.options = LWS_SERVER_OPTION_EXPLICIT_VHOSTS |
753 context = lws_create_context(&info);
761 info.port = 2200;
762 info.options = LWS_SERVER_OPTION_ONLY_RAW;
763 info.vhost_name = "sshd";
764 info.protocols = lws_sshd_demo_protocols;
765 info.pvo = &pvo_ssh;
767 vh_sshd = lws_create_vhost(context, &info);