예제 #1
0
        public FastCGIServer(int port, IPAddress address)
        {
            handler = new FastCGIServerHandler();

            this.port    = port;
            this.address = address;
        }
예제 #2
0
        public FastCGIServer(int port, string address = "0.0.0.0")
        {
            IPAddress ipAddress = IPAddress.Parse(address);

            this.port    = port;
            this.address = ipAddress;

            handler = new FastCGIServerHandler();
        }