Ejemplo n.º 1
0
        private void StartProtocolServer(string ProtocolName, string ProtocolPort)
        {
            log.InfoFormat("{0}/StartProtocolServer", _fileNm);

            TcpServerV0_1 server = new TcpServerV0_1();

            serverManager.Add(server);
            server.Start(ProtocolName, IPAddress.Any, Convert.ToInt32(ProtocolPort));
        }
Ejemplo n.º 2
0
        private void StartProtocolServer(string ProtocolName, string ProtocolPort)
        {
            log.InfoFormat("{0}/StartProtocolServer", _fileNm);

            TcpServerV0_1 server = new TcpServerV0_1();
            serverManager.Add(server);
            server.Start(ProtocolName, IPAddress.Any, Convert.ToInt32(ProtocolPort));
        }