gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r15940 - in libmicrohttpd: . src/daemon src/include
Date: Wed, 13 Jul 2011 10:06:46 +0200

Author: grothoff
Date: 2011-07-13 10:06:45 +0200 (Wed, 13 Jul 2011)
New Revision: 15940

Modified:
   libmicrohttpd/ChangeLog
   libmicrohttpd/configure.ac
   libmicrohttpd/src/daemon/reason_phrase.c
   libmicrohttpd/src/include/microhttpd.h
Log:
fix

Modified: libmicrohttpd/ChangeLog
===================================================================
--- libmicrohttpd/ChangeLog     2011-07-12 21:34:34 UTC (rev 15939)
+++ libmicrohttpd/ChangeLog     2011-07-13 08:06:45 UTC (rev 15940)
@@ -1,3 +1,8 @@
+Wed Jul 13 09:26:17 CEST 2011
+       Fixing HTTP error status strings for certain high-numbered status codes.
+       Added support for some more (non-standard) status codes.
+       Releasing libmicrohttpd 0.9.13. -CG
+
 Thu Jul  7 10:24:20 CEST 2011
        Adding performance measurements. -CG
 

Modified: libmicrohttpd/configure.ac
===================================================================
--- libmicrohttpd/configure.ac  2011-07-12 21:34:34 UTC (rev 15939)
+++ libmicrohttpd/configure.ac  2011-07-13 08:06:45 UTC (rev 15940)
@@ -21,15 +21,15 @@
 #
 #
 AC_PREREQ(2.57)
-AC_INIT([libmicrohttpd], [0.9.12],address@hidden)
-AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.12])
+AC_INIT([libmicrohttpd], [0.9.13],address@hidden)
+AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.13])
 AM_CONFIG_HEADER([MHD_config.h])
 AC_CONFIG_MACRO_DIR([m4])
 AH_TOP([#define _GNU_SOURCE  1])
 
-LIB_VERSION_CURRENT=20
+LIB_VERSION_CURRENT=21
 LIB_VERSION_REVISION=0
-LIB_VERSION_AGE=10
+LIB_VERSION_AGE=11
 AC_SUBST(LIB_VERSION_CURRENT)
 AC_SUBST(LIB_VERSION_REVISION)
 AC_SUBST(LIB_VERSION_AGE)

Modified: libmicrohttpd/src/daemon/reason_phrase.c
===================================================================
--- libmicrohttpd/src/daemon/reason_phrase.c    2011-07-12 21:34:34 UTC (rev 
15939)
+++ libmicrohttpd/src/daemon/reason_phrase.c    2011-07-13 08:06:45 UTC (rev 
15940)
@@ -80,12 +80,39 @@
   "Unsupported Media Type",
   "Requested Range Not Satisfiable",
   "Expectation Failed",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
   "Unprocessable Entity",
   "Locked",
   "Failed Dependency",
   "Unordered Collection",
   "Upgrade Required",
-  "Retry With"
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "No Response",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Unknown",
+  "Retry With",
+  "Blocked by Windows Parental Controls"
 };
 
 static const char *five_hundred[] = {
@@ -97,6 +124,7 @@
   "HTTP Version not supported",
   "Variant Also Negotiates",
   "Insufficient Storage",
+  "Unknown",
   "Bandwidth Limit Exceeded",
   "Not Extended"
 };

Modified: libmicrohttpd/src/include/microhttpd.h
===================================================================
--- libmicrohttpd/src/include/microhttpd.h      2011-07-12 21:34:34 UTC (rev 
15939)
+++ libmicrohttpd/src/include/microhttpd.h      2011-07-13 08:06:45 UTC (rev 
15940)
@@ -106,7 +106,7 @@
 /**
  * Current version of the library.
  */
-#define MHD_VERSION 0x00090C00
+#define MHD_VERSION 0x00090D00
 
 /**
  * MHD-internal return code for "YES".
@@ -206,7 +206,9 @@
 #define MHD_HTTP_FAILED_DEPENDENCY 424
 #define MHD_HTTP_UNORDERED_COLLECTION 425
 #define MHD_HTTP_UPGRADE_REQUIRED 426
+#define MHD_HTTP_NO_RESPONSE 444
 #define MHD_HTTP_RETRY_WITH 449
+#define MHD_HTTP_BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS 450
 
 #define MHD_HTTP_INTERNAL_SERVER_ERROR 500
 #define MHD_HTTP_NOT_IMPLEMENTED 501




reply via email to

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