Server
Accepts encrypted connections using TLS or SSL.
Since
v0.3.2
Inheritors
Constructors
Properties
Functions
The server.addContext()
method adds a secure context that will be used if the client request's SNI name matches the supplied hostname
(or wildcard).
events.EventEmitter
Stops the server from accepting new connections and keeps existing connections. This function is asynchronous, the server is finally closed when all connections are ended and the server emits a 'close'
event. The optional callback
will be called once the 'close'
event occurs. Unlike that event, it will be called with an Error
as its only argument if the server was not open when it was closed.
Returns an array listing the events for which the emitter has registered listeners. The values in the array are strings or Symbol
s.
Asynchronously get the number of concurrent connections on the server. Works when sockets were sent to forks.
Returns the current max listener value for the EventEmitter
which is either set by emitter.setMaxListeners(n)
or defaults to {@link defaultMaxListeners}.
Returns the session ticket keys.
Start a server listening for connections. A net.Server
can be a TCP or an IPC
server depending on what it listens to.
By default EventEmitter
s will print a warning if more than 10
listeners are added for a particular event. This is a useful default that helps finding memory leaks. The emitter.setMaxListeners()
method allows the limit to be modified for this specific EventEmitter
instance. The value can be set to Infinity
(or 0
) to indicate an unlimited number of listeners.
The server.setSecureContext()
method replaces the secure context of an existing server. Existing connections to the server are not interrupted.
Sets the session ticket keys.