Lines Matching defs:Server
125 // Server side times how long a handshake is taking to protect against slow
288 // TLS socket is using a `net.Server` instead of a tls.TLSServer.
1212 debug('net.Server.on(connection): new TLSSocket');
1304 function Server(options, listener) {
1305 if (!(this instanceof Server))
1306 return new Server(options, listener);
1357 ReflectApply(net.Server, this, [options, tlsConnectionListener]);
1366 ObjectSetPrototypeOf(Server.prototype, net.Server.prototype);
1367 ObjectSetPrototypeOf(Server, net.Server);
1368 exports.Server = Server;
1370 return new Server(options, listener);
1374 Server.prototype.setSecureContext = function(options) {
1497 Server.prototype._getServerData = function() {
1504 Server.prototype._setServerData = function(data) {
1509 Server.prototype.getTicketKeys = function getTicketKeys() {
1514 Server.prototype.setTicketKeys = function setTicketKeys(keys) {
1522 Server.prototype.setOptions = deprecate(function(options) {
1566 }, 'Server.prototype.setOptions() is deprecated', 'DEP0122');
1569 Server.prototype.addContext = function(servername, context) {
1584 Server.prototype[EE.captureRejectionSymbol] = function(
1592 ReflectApply(net.Server.prototype[SymbolFor('nodejs.rejection')], this,