Lines Matching defs:info
32 * connect to it and pass just info.streamtype in an initial tx packet. All
769 struct lws_context_creation_info info;
771 memset(&info, 0, sizeof(info));
773 info.vhost_name = "ssproxy";
774 info.options = LWS_SERVER_OPTION_ADOPT_APPLY_LISTEN_ACCEPT_CONFIG |
776 info.port = port;
784 info.options |= LWS_SERVER_OPTION_UNIX_SOCK;
786 info.iface = bind;
788 info.unix_socket_perms = "root:root";
791 info.listen_accept_role = "raw-skt";
792 info.listen_accept_protocol = "ssproxy-protocol";
793 info.protocols = protocols;
795 if (!lws_create_vhost(context, &info)) {