connectionClosedWithoutResponse constant

HttpStatus const connectionClosedWithoutResponse

444 CONNECTION CLOSED WITHOUT RESPONSE.

A non-standard status code used to instruct nginx to close the connection without sending a response to the client, most commonly used to deny malicious or malformed requests.

This status code is not seen by the client, it only appears in nginx log files.

Implementation

static const HttpStatus connectionClosedWithoutResponse = HttpStatus._(
  code: HttpStatusCode.connectionClosedWithoutResponse,
  name: 'Connection Closed Without Response',
  description: 'A non-standard status code used to instruct nginx to close '
      'the connection without sending a response to the client, '
      'most commonly used to deny malicious or malformed requests.',
);