StartServer() public method

open proxy
public StartServer ( int port, string portName ) : void
port int webSocket port
portName string ipv6 gateway port
return void
Esempio n. 1
0
        static void Main(string[] args)
        {
            ServerListerner coapProxyServer = new ServerListerner(Int32.Parse(GetAppConfig("listenPort")));
            coapProxyServer.StartServer(Int32.Parse(GetAppConfig("webSocetPort")),GetAppConfig("portName"));
            while (true)
            {
                coapProxyServer.AcceptConnection();
            }

        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            ServerListerner coapProxyServer = new ServerListerner(Int32.Parse(GetAppConfig("listenPort")));

            coapProxyServer.StartServer(Int32.Parse(GetAppConfig("webSocetPort")), GetAppConfig("portName"));
            while (true)
            {
                coapProxyServer.AcceptConnection();
            }
        }