Fix api for request.connection

pull/22966/head
Ryan Dahl 2010-05-19 11:01:21 -07:00
parent 2420f07e94
commit c489c2c1b5
1 changed files with 7 additions and 6 deletions

View File

@ -1596,14 +1596,13 @@ This is an EventEmitter with the following events:
`request` is an instance of `http.ServerRequest` and `response` is
an instance of `http.ServerResponse`
### Event: 'stream'
### Event: 'connection'
`function (stream) { }`
When a new TCP stream is established.
`stream` is an object of type `http.Connection`. Usually users
will not want to access this event. The `stream` can also be
accessed at `request.stream`.
When a new TCP stream is established. `stream` is an object of type
`net.Stream`. Usually users will not want to access this event. The
`stream` can also be accessed at `request.connection`.
### Event: 'close'
@ -1784,7 +1783,9 @@ Resumes a paused request.
The `net.Stream` object assocated with the connection.
With HTTPS support, use request.connection.verifyPeer() and request.connection.getPeerCertificate() to obtain the client's authentication details.
With HTTPS support, use request.connection.verifyPeer() and
request.connection.getPeerCertificate() to obtain the client's
authentication details.
## http.ServerResponse