Initial Commit
[ancientarts.git] / api / .rocks / share / tarantool / http / codes.lua
1 return {
2 [200] = 'Ok',
3 [201] = 'Created',
4 [202] = 'Accepted',
5 [203] = 'Non authoritative information',
6 [204] = 'No content',
7 [205] = 'Reset content',
8 [206] = 'Partial content',
9 [207] = 'Multi status',
10 [208] = 'Already reported',
11 [226] = 'IM used',
12 [300] = 'Multiple choises',
13 [301] = 'Moved permanently',
14 [302] = 'Found',
15 [303] = 'See other',
16 [304] = 'Not modified',
17 [305] = 'Use proxy',
18 [307] = 'Temporary redirect',
19 [400] = 'Bad request',
20 [401] = 'Unauthorized',
21 [402] = 'Payment required',
22 [403] = 'Forbidden',
23 [404] = 'Not found',
24 [405] = 'Method not allowed',
25 [406] = 'Not acceptable',
26 [407] = 'Proxy authentification required',
27 [408] = 'Request timeout',
28 [409] = 'Conflict',
29 [410] = 'Gone',
30 [411] = 'Length required',
31 [412] = 'Precondition failed',
32 [413] = 'Request entity too large',
33 [414] = 'Request uri too large',
34 [415] = 'Unsupported media type',
35 [416] = 'Request range not satisfiable',
36 [417] = 'Expectation failed',
37 [418] = 'I am a teapot',
38 [422] = 'Unprocessable entity',
39 [423] = 'Locked',
40 [424] = 'Failed dependency',
41 [425] = 'No code',
42 [426] = 'Upgrade required',
43 [428] = 'Precondition required',
44 [429] = 'Too many requests',
45 [431] = 'Request header fields too large',
46 [449] = 'Retry with',
47 [451] = 'Unavailable for legal reasons',
48 [456] = 'Unrecoverable error',
49 [500] = 'Internal server error',
50 [501] = 'Not implemented',
51 [502] = 'Bad gateway',
52 [503] = 'Service unavailable',
53 [504] = 'Gateway timeout',
54 [505] = 'Http version not supported',
55 [506] = 'Variant also negotiates',
56 [507] = 'Insufficient storage',
57 [509] = 'Bandwidth limit exceeded',
58 [510] = 'Not extended',
59 [511] = 'Network authentication required',
60 }