libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 72ba3eea6de0f7433f6aa7ac85b7e1110b20e15d
parent f3ce0400d1b2e56ec57eb70be828752916210751
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 31 Jan 2008 06:30:45 +0000

version

Diffstat:
MChangeLog | 5++++-
MREADME | 26++++++++++++--------------
Mconfigure.ac | 4++--
Msrc/daemon/Makefile.am | 2+-
4 files changed, 19 insertions(+), 18 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,5 +1,8 @@ Wed Jan 30 23:15:44 MST 2008 - Added support for nested multiparts to post processor. -CG + Added support for nested multiparts to post processor. + Made sure that MHD does not allow pipelining for methods + other than HEAD and GET (and of course still also only + allows it for http 1.1). -CG Mon Jan 21 11:59:46 MST 2008 Added option to limit number of concurrent connections diff --git a/README b/README @@ -42,21 +42,18 @@ Development Status This is a beta release. Below we list things that should be implemented (in order of importance) before we can claim to be reasonably complete. #XXXX refers to the respective Mantis bug report -(or feature request). ARCH indicates that implementing this feature -may require non-trivial ARCHitectural changes in the code. API -indicates that implementing the feature will require API changes. -TRIV indicates that implementing this feature should be TRIVial. TEST -indicates that a testcase should be written before implementing the -feature. +(or feature request). -For SSL: -======== -microhttpd.h: -- define appropriate MHD_OPTIONs (#1225, API) -- actual implementation (#1225, ARCH) -Missing Testcases: +Missing features: +================= +- SSL support: + * define appropriate MHD_OPTIONs (#1225) + * actual implementation (#1225) + + +Untested features: ================== - add testcases for http/1.1 pipelining (need to figure out how to ensure curl pipelines @@ -68,8 +65,9 @@ Missing Testcases: - extend testcase for chunked encoding to validate handling of footers -Documentation: -============== + +Missing documentation: +====================== - manual (texinfo, man) - tutorial diff --git a/configure.ac b/configure.ac @@ -21,8 +21,8 @@ # # AC_PREREQ(2.57) -AC_INIT([libmicrohttpd], [0.2.0],[libmicrohttpd@gnunet.org]) -AM_INIT_AUTOMAKE([libmicrohttpd], [0.2.0]) +AC_INIT([libmicrohttpd], [0.2.1],[libmicrohttpd@gnunet.org]) +AM_INIT_AUTOMAKE([libmicrohttpd], [0.2.1]) AM_CONFIG_HEADER([config.h]) AH_TOP([#define _GNU_SOURCE 1]) diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am @@ -12,7 +12,7 @@ lib_LTLIBRARIES = \ libmicrohttpd.la libmicrohttpd_la_LDFLAGS = \ - -export-dynamic -version-info 3:0:0 $(retaincommand) + -export-dynamic -version-info 3:1:0 $(retaincommand) libmicrohttpd_la_SOURCES = \ connection.c connection.h \ reason_phrase.c reason_phrase.h \