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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
This file is part of libmicrohttpd
(C) 2007 Lymba
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file reason_phrase.c
* @brief Tables of the string response phrases
* @author Elliot Glaysher
* @author Christian Grothoff (minor code clean up)
*/
#include "reason_phrase.h"
static const char *invalid_hundred[] = { };
static const char *one_hundred[] = {
"Continue",
"Switching Protocols",
"Processing"
};
static const char *two_hundred[] = {
"OK",
"Created",
"Accepted",
"Non-Authoritative Information",
"No Content",
"Reset Content",
"Partial Content"
};
static const char *three_hundred[] = {
"Multiple Choices",
"Moved Permanently",
"Moved Temporarily",
"See Other",
"Not Modified",
"Use Proxy"
};
static const char *four_hundred[] = {
"Bad Request",
"Unauthorized",
"Payment Required",
"Forbidden",
"Not Found",
"Method Not Allowed",
"Not Acceptable",
"Proxy Authentication Required",
"Request Time-out",
"Conflict",
"Gone",
"Length Required",
"Precondition Failed",
"Request Entity Too Large",
"Request-URI Too Large",
"Unsupported Media Type"
};
static const char *five_hundred[] = {
"Internal Server Error",
"Bad Gateway",
"Service Unavailable",
"Gateway Time-out",
"HTTP Version not supported"
};
struct MHD_Reason_Block
{
unsigned int max;
const char **data;
};
#define BLOCK(m) { (sizeof(m) / sizeof(char*)), m }
static const struct MHD_Reason_Block reasons[] = {
BLOCK (invalid_hundred),
BLOCK (one_hundred),
BLOCK (two_hundred),
BLOCK (three_hundred),
BLOCK (four_hundred),
BLOCK (five_hundred),
};
const char *
MHD_get_reason_phrase_for (unsigned int code)
{
if ((code >= 100 && code < 600) && (reasons[code / 100].max > code % 100))
return reasons[code / 100].data[code % 100];
return "Unknown";
}
|