aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2008-01-31 06:30:45 +0000
committerChristian Grothoff <christian@grothoff.org>2008-01-31 06:30:45 +0000
commit72ba3eea6de0f7433f6aa7ac85b7e1110b20e15d (patch)
tree4799350280832e4438ae3b4ecce0033f9039d626
parentf3ce0400d1b2e56ec57eb70be828752916210751 (diff)
downloadlibmicrohttpd-72ba3eea6de0f7433f6aa7ac85b7e1110b20e15d.tar.gz
libmicrohttpd-72ba3eea6de0f7433f6aa7ac85b7e1110b20e15d.zip
version
-rw-r--r--ChangeLog5
-rw-r--r--README26
-rw-r--r--configure.ac4
-rw-r--r--src/daemon/Makefile.am2
4 files changed, 19 insertions, 18 deletions
diff --git a/ChangeLog b/ChangeLog
index a1156c6e..b6a06220 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
1Wed Jan 30 23:15:44 MST 2008 1Wed Jan 30 23:15:44 MST 2008
2 Added support for nested multiparts to post processor. -CG 2 Added support for nested multiparts to post processor.
3 Made sure that MHD does not allow pipelining for methods
4 other than HEAD and GET (and of course still also only
5 allows it for http 1.1). -CG
3 6
4Mon Jan 21 11:59:46 MST 2008 7Mon Jan 21 11:59:46 MST 2008
5 Added option to limit number of concurrent connections 8 Added option to limit number of concurrent connections
diff --git a/README b/README
index 13253d4d..0401ef81 100644
--- a/README
+++ b/README
@@ -42,21 +42,18 @@ Development Status
42This is a beta release. Below we list things that should be 42This is a beta release. Below we list things that should be
43implemented (in order of importance) before we can claim to be 43implemented (in order of importance) before we can claim to be
44reasonably complete. #XXXX refers to the respective Mantis bug report 44reasonably complete. #XXXX refers to the respective Mantis bug report
45(or feature request). ARCH indicates that implementing this feature 45(or feature request).
46may require non-trivial ARCHitectural changes in the code. API
47indicates that implementing the feature will require API changes.
48TRIV indicates that implementing this feature should be TRIVial. TEST
49indicates that a testcase should be written before implementing the
50feature.
51 46
52 47
53For SSL:
54========
55microhttpd.h:
56- define appropriate MHD_OPTIONs (#1225, API)
57- actual implementation (#1225, ARCH)
58 48
59Missing Testcases: 49Missing features:
50=================
51- SSL support:
52 * define appropriate MHD_OPTIONs (#1225)
53 * actual implementation (#1225)
54
55
56Untested features:
60================== 57==================
61- add testcases for http/1.1 pipelining (need 58- add testcases for http/1.1 pipelining (need
62 to figure out how to ensure curl pipelines 59 to figure out how to ensure curl pipelines
@@ -68,8 +65,9 @@ Missing Testcases:
68- extend testcase for chunked encoding to validate 65- extend testcase for chunked encoding to validate
69 handling of footers 66 handling of footers
70 67
71Documentation: 68
72============== 69Missing documentation:
70======================
73- manual (texinfo, man) 71- manual (texinfo, man)
74- tutorial 72- tutorial
75 73
diff --git a/configure.ac b/configure.ac
index 09860619..d3bf47ec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,8 +21,8 @@
21# 21#
22# 22#
23AC_PREREQ(2.57) 23AC_PREREQ(2.57)
24AC_INIT([libmicrohttpd], [0.2.0],[libmicrohttpd@gnunet.org]) 24AC_INIT([libmicrohttpd], [0.2.1],[libmicrohttpd@gnunet.org])
25AM_INIT_AUTOMAKE([libmicrohttpd], [0.2.0]) 25AM_INIT_AUTOMAKE([libmicrohttpd], [0.2.1])
26AM_CONFIG_HEADER([config.h]) 26AM_CONFIG_HEADER([config.h])
27 27
28AH_TOP([#define _GNU_SOURCE 1]) 28AH_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 = \
12 libmicrohttpd.la 12 libmicrohttpd.la
13 13
14libmicrohttpd_la_LDFLAGS = \ 14libmicrohttpd_la_LDFLAGS = \
15 -export-dynamic -version-info 3:0:0 $(retaincommand) 15 -export-dynamic -version-info 3:1:0 $(retaincommand)
16libmicrohttpd_la_SOURCES = \ 16libmicrohttpd_la_SOURCES = \
17 connection.c connection.h \ 17 connection.c connection.h \
18 reason_phrase.c reason_phrase.h \ 18 reason_phrase.c reason_phrase.h \