Ejemplo n.º 1
0
 public HttpServer(IHttpRequestHandler requestHandler, IClientFactory clientFactory)
     : this(requestHandler, clientFactory, null, null)
 {
     Firewall = new DefaultFirewall(this);
 }
Ejemplo n.º 2
0
 public HttpServer(IClientFactory clientFactory, ServerOptions options) : this(null, clientFactory, null, null, null)
 {
     Firewall = new DefaultFirewall(this);
     Options  = options;
 }