zlib.unzipSync()

zlib.unzipSync(buf[, options]) Decompress a Buffer or string with Unzip.

error event (net.Socket)

Event: 'error' <Error> Emitted when an error occurs. The 'close' event will be called directly following this event.

os.release()

os.release() Returns the operating system release.

net.isIP()

net.isIP(input) Tests if input is an IP address. Returns 0 for invalid strings, returns 4 for IP version 4 addresses, and returns 6 for IP version 6 addresses.

connection event (net.Server)

Event: 'connection' <net.Socket> The connection object Emitted when a new connection is made. socket is an instance of net.Socket.

agent.freeSockets

agent.freeSockets An object which contains arrays of sockets currently awaiting use by the Agent when HTTP KeepAlive is used. Do not modify.

tls.getCiphers()

tls.getCiphers() Returns an array with the names of the supported SSL ciphers. Example: var ciphers = tls.getCiphers(); console.log(ciphers); // ['AES128-SHA', 'AES256-SHA', ...]

buffer.writeFloatBE()

buf.writeFloatBE(value, offset[, noAssert])

agent.sockets

agent.sockets An object which contains arrays of sockets currently in use by the Agent. Do not modify.

decipher.setAuthTag()

decipher.setAuthTag(buffer) When using an authenticated encryption mode (only GCM is currently supported), the decipher.setAuthTag() method is used to pass in the received authentication tag. If no tag is provided, or if the cipher text has been tampered with, decipher.final() with throw, indicating that the cipher text should be discarded due to failed authentication.