gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r7598 - in libmicrohttpd: . src/daemon


From: gnunet
Subject: [GNUnet-SVN] r7598 - in libmicrohttpd: . src/daemon
Date: Sun, 24 Aug 2008 12:48:09 -0600 (MDT)

Author: grothoff
Date: 2008-08-24 12:48:08 -0600 (Sun, 24 Aug 2008)
New Revision: 7598

Modified:
   libmicrohttpd/ChangeLog
   libmicrohttpd/src/daemon/reason_phrase.c
Log:
reason

Modified: libmicrohttpd/ChangeLog
===================================================================
--- libmicrohttpd/ChangeLog     2008-08-24 18:44:21 UTC (rev 7597)
+++ libmicrohttpd/ChangeLog     2008-08-24 18:48:08 UTC (rev 7598)
@@ -1,3 +1,6 @@
+Sun Aug 24 12:44:43 MDT 2008
+        Added missing reason phrase. -SG
+
 Sun Aug 24 10:33:22 MDT 2008
         Fixed bug where MHD failed to transmit the response when
         the client decided not to send "100 CONTINUE" during

Modified: libmicrohttpd/src/daemon/reason_phrase.c
===================================================================
--- libmicrohttpd/src/daemon/reason_phrase.c    2008-08-24 18:44:21 UTC (rev 
7597)
+++ libmicrohttpd/src/daemon/reason_phrase.c    2008-08-24 18:48:08 UTC (rev 
7598)
@@ -43,7 +43,8 @@
   "Non-Authoritative Information",
   "No Content",
   "Reset Content",
-  "Partial Content"
+  "Partial Content",
+  "Multi Status"
 };
 
 static const char *three_hundred[] = {
@@ -52,7 +53,9 @@
   "Moved Temporarily",
   "See Other",
   "Not Modified",
-  "Use Proxy"
+  "Use Proxy",
+  "Switch Proxy",
+  "Temporary Redirect"
 };
 
 static const char *four_hundred[] = {
@@ -71,15 +74,28 @@
   "Precondition Failed",
   "Request Entity Too Large",
   "Request-URI Too Large",
-  "Unsupported Media Type"
+  "Unsupported Media Type",
+  "Requested Range Not Satisfiable",
+  "Expectation Failed",
+  "Unprocessable Entity",
+  "Locked",
+  "Failed Dependency",
+  "Unordered Collection",
+  "Upgrade Required",
+  "Retry With"
 };
 
 static const char *five_hundred[] = {
   "Internal Server Error",
+  "Not Implemented",
   "Bad Gateway",
   "Service Unavailable",
   "Gateway Time-out",
-  "HTTP Version not supported"
+  "HTTP Version not supported",
+  "Variant Also Negotiates",
+  "Insufficient Storage",
+  "Bandwidth Limit Exceeded",
+  "Not Extended"
 };
 
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]