@@ -193,7 +193,7 @@ Listening on a file descriptor is not supported on Windows.
193
193
194
194
This function is asynchronous. When the server has been bound,
195
195
[ 'listening'] [ ] event will be emitted.
196
- the last parameter ` callback ` will be added as an listener for the
196
+ The last parameter ` callback ` will be added as an listener for the
197
197
[ 'listening'] [ ] event.
198
198
199
199
### server.listen(options[ , callback] )
@@ -228,10 +228,10 @@ shown below.
228
228
229
229
Stops the server from accepting new connections and keeps existing
230
230
connections. This function is asynchronous, the server is finally
231
- closed when all connections are ended and the server emits a ` 'close' `
232
- event. Optionally, you can pass a callback to listen for the ` 'close' `
233
- event. If present, the callback is invoked with any potential error
234
- as the first and only argument .
231
+ closed when all connections are ended and the server emits a [ 'close'] [ ] event.
232
+ The optional ` callback ` will be called once the ` 'close' ` event occurs. Unlike
233
+ that event, it will be called with an Error as its only argument if the server
234
+ was not open when it was closed .
235
235
236
236
### server.address()
237
237
@@ -317,7 +317,7 @@ event is not emitted until all connections are ended.
317
317
318
318
* {Error Object}
319
319
320
- Emitted when an error occurs. The ` 'close' ` event will be called directly
320
+ Emitted when an error occurs. The [ 'close'] [ ] event will be called directly
321
321
following this event. See example in discussion of ` server.listen ` .
322
322
323
323
## Class: net.Socket
@@ -597,7 +597,7 @@ following this event.
597
597
598
598
### Event: 'close'
599
599
600
- * ` had_error ` {Boolean} true if the socket had a transmission error
600
+ * ` had_error ` {Boolean} ` true ` if the socket had a transmission error.
601
601
602
602
Emitted once the socket is fully closed. The argument ` had_error ` is a boolean
603
603
which says if the socket was closed due to a transmission error.
@@ -617,6 +617,7 @@ Returns true if input is a version 4 IP address, otherwise returns false.
617
617
618
618
Returns true if input is a version 6 IP address, otherwise returns false.
619
619
620
+ [ 'close' ] : #net_event_close
620
621
[ 'connect' ] : #net_event_connect
621
622
[ 'connection' ] : #net_event_connection
622
623
[ 'end' ] : #net_event_end
0 commit comments