Index: include/httpd.h =================================================================== RCS file: /home/cvspublic/httpd-2.0/include/httpd.h,v retrieving revision 1.212 diff -u -r1.212 httpd.h --- include/httpd.h 12 Aug 2004 05:22:59 -0000 1.212 +++ include/httpd.h 15 Sep 2004 22:04:32 -0000 @@ -426,7 +426,7 @@ * 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 @@ -439,6 +439,7 @@ #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 Index: modules/http/http_protocol.c =================================================================== RCS file: /home/cvspublic/httpd-2.0/modules/http/http_protocol.c,v retrieving revision 1.483 diff -u -r1.483 http_protocol.c --- modules/http/http_protocol.c 15 Sep 2004 20:24:19 -0000 1.483 +++ modules/http/http_protocol.c 15 Sep 2004 22:04:33 -0000 @@ -85,7 +85,26 @@ "205 Reset Content", "206 Partial Content", "207 Multi-Status", -#define LEVEL_300 11 + "208 unused", + "209 unused", + "210 unused", + "211 unused", + "212 unused", + "213 unused", + "214 unused", + "215 unused", + "216 unused", + "217 unused", + "218 unused", + "219 unused", + "220 unused", + "221 unused", + "222 unused", + "223 unused", + "224 unused", + "225 unused", + "226 IM Used", +#define LEVEL_300 30 "300 Multiple Choices", "301 Moved Permanently", "302 Found", @@ -94,7 +113,7 @@ "305 Use Proxy", "306 unused", "307 Temporary Redirect", -#define LEVEL_400 19 +#define LEVEL_400 38 "400 Bad Request", "401 Authorization Required", "402 Payment Required", @@ -125,7 +144,7 @@ */ "425 No code", "426 Upgrade Required", -#define LEVEL_500 46 +#define LEVEL_500 65 "500 Internal Server Error", "501 Method Not Implemented", "502 Bad Gateway",