Inheritance: ServerSocket
Exemplo n.º 1
0
 public SyslogServer(IPEndPoint udpEndPoint, IPEndPoint tcpEndPoint)
 {
     this.udpEndPoint = udpEndPoint;
     this.tcpEndPoint = tcpEndPoint;
     udpServer = new UdpServer();
     tcpServer = new TcpServer();
     stopped = true;
 }
Exemplo n.º 2
0
 public SyslogServer(IPEndPoint udpEndPoint, IPEndPoint tcpEndPoint)
 {
     this.udpEndPoint = udpEndPoint;
     this.tcpEndPoint = tcpEndPoint;
     udpServer        = new UdpServer();
     tcpServer        = new TcpServer();
     stopped          = true;
 }