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