Hierarchy

  • ServerOpts

Properties

allowHalfOpen?: boolean

Indicates whether half-opened TCP connections are allowed.

Default

false

keepAlive?: boolean

If set to true, it enables keep-alive functionality on the socket immediately after a new incoming connection is received, similarly on what is done in socket.setKeepAlive([enable][, initialDelay]).

Default

false

Since

v16.5.0

keepAliveInitialDelay?: number

If set to a positive number, it sets the initial delay before the first keepalive probe is sent on an idle socket.

Default

0

Since

v16.5.0

noDelay?: boolean

If set to true, it disables the use of Nagle's algorithm immediately after a new incoming connection is received.

Default

false

Since

v16.5.0

pauseOnConnect?: boolean

Indicates whether the socket should be paused on incoming connections.

Default

false