From 4e047d32b0a255eb6ff16a83a1acfcc90182096e Mon Sep 17 00:00:00 2001 From: koichik Date: Fri, 11 Mar 2011 02:15:05 +0900 Subject: [PATCH] Document net.Socket() constructor --- doc/api/net.markdown | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/api/net.markdown b/doc/api/net.markdown index 25b9f92..e3321e0 100644 --- a/doc/api/net.markdown +++ b/doc/api/net.markdown @@ -163,6 +163,21 @@ and passed to the user through the `'connection'` event of a server. `net.Socket` instances are EventEmitters with the following events: +#### new net.Socket([options]) + +Construct a new socket object. + +`options` is an object with the following defaults: + + { fd: null + type: null + allowHalfOpen: false + } + +`fd` allows you to specify the existing file descriptor of socket. `type` +specified underlying protocol. It can be `'tcp4'`, `'tcp6'`, or `'unix'`. +About `allowHalfOpen`, refer to `createServer()` and `'end'` event. + #### socket.connect(port, [host], [callback]) #### socket.connect(path, [callback]) -- 2.7.4