Lines Matching defs:Server
48 Server: HttpServer,
59 function Server(opts, requestListener) {
60 if (!(this instanceof Server)) return new Server(opts, requestListener);
76 FunctionPrototypeCall(tls.Server, this, opts, _connectionListener);
94 ObjectSetPrototypeOf(Server.prototype, tls.Server.prototype);
95 ObjectSetPrototypeOf(Server, tls.Server);
97 Server.prototype.closeAllConnections = HttpServer.prototype.closeAllConnections;
99 Server.prototype.closeIdleConnections = HttpServer.prototype.closeIdleConnections;
101 Server.prototype.setTimeout = HttpServer.prototype.setTimeout;
103 Server.prototype.close = function() {
105 ReflectApply(tls.Server.prototype.close, this, arguments);
109 * Creates a new `https.Server` instance.
117 * @returns {Server}
120 return new Server(opts, requestListener);
408 Server,