diff options
author | Christian Grothoff <christian@grothoff.org> | 2008-01-31 06:30:45 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2008-01-31 06:30:45 +0000 |
commit | 72ba3eea6de0f7433f6aa7ac85b7e1110b20e15d (patch) | |
tree | 4799350280832e4438ae3b4ecce0033f9039d626 | |
parent | f3ce0400d1b2e56ec57eb70be828752916210751 (diff) |
version
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | README | 26 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | src/daemon/Makefile.am | 2 |
4 files changed, 19 insertions, 18 deletions
@@ -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 @@ -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 index 09860619..d3bf47ec 100644 --- 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 index 76e481a3..254dab8c 100644 --- 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 \ |