summaryrefslogtreecommitdiffstats
path: root/include/httpd.h
diff options
context:
space:
mode:
authorGeoffrey Young <geoff@apache.org>2004-12-09 15:16:16 +0100
committerGeoffrey Young <geoff@apache.org>2004-12-09 15:16:16 +0100
commitfe1bfd7775b6fce7896ec12bfa051a7987766722 (patch)
tree9016899f4f431d069bb4f917c99183a4bca1c25f /include/httpd.h
parentap_queue_push: update comment to reflect reality (diff)
downloadapache2-fe1bfd7775b6fce7896ec12bfa051a7987766722.tar.xz
apache2-fe1bfd7775b6fce7896ec12bfa051a7987766722.zip
add response code 226 constant (HTTP_IM_USED) and status
line ("226 IM Used"). PR 31128. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@111386 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/httpd.h')
-rw-r--r--include/httpd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/httpd.h b/include/httpd.h
index 47e40c9254..8111861456 100644
--- a/include/httpd.h
+++ b/include/httpd.h
@@ -427,7 +427,7 @@ AP_DECLARE(const char *) ap_get_server_built(void);
* all of the potential response status-lines (a sparse table).
* A future version should dynamically generate the apr_table_t at startup.
*/
-#define RESPONSE_CODES 57
+#define RESPONSE_CODES 76
#define HTTP_CONTINUE 100
#define HTTP_SWITCHING_PROTOCOLS 101
@@ -440,6 +440,7 @@ AP_DECLARE(const char *) ap_get_server_built(void);
#define HTTP_RESET_CONTENT 205
#define HTTP_PARTIAL_CONTENT 206
#define HTTP_MULTI_STATUS 207
+#define HTTP_IM_USED 226
#define HTTP_MULTIPLE_CHOICES 300
#define HTTP_MOVED_PERMANENTLY 301
#define HTTP_MOVED_TEMPORARILY 302