gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r6693 - in libmicrohttpd: . doc src/daemon src/include
Date: Sun, 13 Apr 2008 01:09:07 -0600 (MDT)

Author: grothoff
Date: 2008-04-13 01:09:06 -0600 (Sun, 13 Apr 2008)
New Revision: 6693

Modified:
   libmicrohttpd/ChangeLog
   libmicrohttpd/configure.ac
   libmicrohttpd/doc/Makefile.am
   libmicrohttpd/doc/microhttpd.texi
   libmicrohttpd/src/daemon/Makefile.am
   libmicrohttpd/src/include/microhttpd.h
Log:
rel

Modified: libmicrohttpd/ChangeLog
===================================================================
--- libmicrohttpd/ChangeLog     2008-04-13 06:13:50 UTC (rev 6692)
+++ libmicrohttpd/ChangeLog     2008-04-13 07:09:06 UTC (rev 6693)
@@ -1,3 +1,6 @@
+Sun Apr 13 01:06:20 MDT 2008
+        Releasing GNU libmicrohttpd 0.3.0. -CG
+
 Sat Apr 12 21:34:26 MDT 2008
         Generate an internal server error if the programmer fails
         to handle upload data correctly.  Tweaked testcases to

Modified: libmicrohttpd/configure.ac
===================================================================
--- libmicrohttpd/configure.ac  2008-04-13 06:13:50 UTC (rev 6692)
+++ libmicrohttpd/configure.ac  2008-04-13 07:09:06 UTC (rev 6693)
@@ -1,5 +1,5 @@
 # This file is part of libmicrohttpd.
-# (C) 2006, 2007 Christian Grothoff (and other contributing authors)
+# (C) 2006, 2007, 2008 Christian Grothoff (and other contributing authors)
 #
 # libmicrohttpd is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published
@@ -21,8 +21,8 @@
 #
 #
 AC_PREREQ(2.57)
-AC_INIT([libmicrohttpd], [0.2.3],address@hidden)
-AM_INIT_AUTOMAKE([libmicrohttpd], [0.2.3])
+AC_INIT([libmicrohttpd], [0.3.0],address@hidden)
+AM_INIT_AUTOMAKE([libmicrohttpd], [0.3.0])
 AM_CONFIG_HEADER([config.h])
 
 AH_TOP([#define _GNU_SOURCE  1])

Modified: libmicrohttpd/doc/Makefile.am
===================================================================
--- libmicrohttpd/doc/Makefile.am       2008-04-13 06:13:50 UTC (rev 6692)
+++ libmicrohttpd/doc/Makefile.am       2008-04-13 07:09:06 UTC (rev 6693)
@@ -1,5 +1,5 @@
 man_MANS = libmicrohttpd.3
-EXTRA_DIST = $(man_MANS)
+EXTRA_DIST = $(man_MANS) Doxyfile
 
 DISTCLEANFILES = microhttpd.cps
 info_TEXINFOS = microhttpd.texi

Modified: libmicrohttpd/doc/microhttpd.texi
===================================================================
--- libmicrohttpd/doc/microhttpd.texi   2008-04-13 06:13:50 UTC (rev 6692)
+++ libmicrohttpd/doc/microhttpd.texi   2008-04-13 07:09:06 UTC (rev 6693)
@@ -442,7 +442,15 @@
 @item upload_data_size
 set initially to the size of the @var{upload_data} provided; this
 callback must update this value to the number of bytes @strong{NOT}
-processed;
+processed; unless external select is used, the callback maybe
+required to process at least some data.  If the callback fails to
+process data in multi-threaded or internal-select mode and if the
+read-buffer is already at the maximum size that MHD is willing to
+use for reading (about half of the maximum amount of memory allowed
+for the connection), then MHD will abort handling the connection
+and return an internal server error to the client.  In order to
+avoid this, clients must be able to process upload data incrementally
+and reduce the value of @code{upload_data_size}.
 
 @item con_cls
 reference to a pointer, initially set to @mynull{}, that this callback can

Modified: libmicrohttpd/src/daemon/Makefile.am
===================================================================
--- libmicrohttpd/src/daemon/Makefile.am        2008-04-13 06:13:50 UTC (rev 
6692)
+++ libmicrohttpd/src/daemon/Makefile.am        2008-04-13 07:09:06 UTC (rev 
6693)
@@ -12,7 +12,7 @@
   libmicrohttpd.la
 
 libmicrohttpd_la_LDFLAGS = \
-  -export-dynamic -version-info 3:2:0 $(retaincommand)
+  -export-dynamic -version-info 4:2:0 $(retaincommand)
 libmicrohttpd_la_SOURCES = \
   connection.c connection.h \
   reason_phrase.c reason_phrase.h \

Modified: libmicrohttpd/src/include/microhttpd.h
===================================================================
--- libmicrohttpd/src/include/microhttpd.h      2008-04-13 06:13:50 UTC (rev 
6692)
+++ libmicrohttpd/src/include/microhttpd.h      2008-04-13 07:09:06 UTC (rev 
6693)
@@ -1,6 +1,6 @@
 /*
      This file is part of libmicrohttpd
-     (C) 2006, 2007 Christian Grothoff (and other contributing authors)
+     (C) 2006, 2007, 2008 Christian Grothoff (and other contributing authors)
 
      This library is free software; you can redistribute it and/or
      modify it under the terms of the GNU Lesser General Public
@@ -84,7 +84,7 @@
 /**
  * Current version of the library.
  */
-#define MHD_VERSION 0x00020200
+#define MHD_VERSION 0x00030000
 
 /**
  * MHD-internal return codes.





reply via email to

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