doc: update description of 'clientError' event

Default behavior is to send a '400 Bad Request' response if the socket
is writable.

PR-URL: https://github.com/nodejs/node/pull/18885
Refs: https://github.com/nodejs/node/pull/15324
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
pull/18890/merge
Luigi Pinca 2018-02-20 18:33:05 +01:00 committed by Benjamin Gruenbaum
parent 0329643b0f
commit 54cb3c5759
1 changed files with 4 additions and 3 deletions

View File

@ -784,10 +784,11 @@ changes:
If a client connection emits an `'error'` event, it will be forwarded here.
Listener of this event is responsible for closing/destroying the underlying
socket. For example, one may wish to more gracefully close the socket with an
HTTP '400 Bad Request' response instead of abruptly severing the connection.
socket. For example, one may wish to more gracefully close the socket with a
custom HTTP response instead of abruptly severing the connection.
Default behavior is to destroy the socket immediately on malformed request.
Default behavior is to close the socket with an HTTP '400 Bad Request' response
if possible, otherwise the socket is immediately destroyed.
`socket` is the [`net.Socket`][] object that the error originated from.