1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| 'use strict'
|
| /*
| * node-res
| *
| * (c) Harminder Virk <virk@adonisjs.com>
| *
| * For the full copyright and license information, please view the LICENSE
| * file that was distributed with this source code.
| */
|
| module.exports = {
| continue: 100,
| switchingProtocols: 101,
| ok: 200,
| created: 201,
| accepted: 202,
| nonAuthoritativeInformation: 203,
| noContent: 204,
| resetContent: 205,
| partialContent: 206,
| multipleChoices: 300,
| movedPermanently: 301,
| found: 302,
| seeOther: 303,
| notModified: 304,
| useProxy: 305,
| temporaryRedirect: 307,
| badRequest: 400,
| unauthorized: 401,
| paymentRequired: 402,
| forbidden: 403,
| notFound: 404,
| methodNotAllowed: 405,
| notAcceptable: 406,
| proxyAuthenticationRequired: 407,
| requestTimeout: 408,
| conflict: 409,
| gone: 410,
| lengthRequired: 411,
| preconditionFailed: 412,
| requestEntityTooLarge: 413,
| requestUriTooLong: 414,
| unsupportedMediaType: 415,
| requestedRangeNotSatisfiable: 416,
| expectationFailed: 417,
| unprocessableEntity: 422,
| tooManyRequests: 429,
| internalServerError: 500,
| notImplemented: 501,
| badGateway: 502,
| serviceUnavailable: 503,
| gatewayTimeout: 504,
| httpVersionNotSupported: 505
| }
|
|