libmicrohttpd

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

commit 17461f1978058cc58f1824d78f18ace4365a77f7
parent b41f753a6d0aa55ca5ef7f9e160813c007c03167
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 29 Mar 2011 12:22:48 +0000

release 0.9.9

Diffstat:
MChangeLog | 7+++++--
MREADME | 1-
Mconfigure.ac | 10+++++-----
Msrc/include/microhttpd.h | 4++--
4 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,6 @@ +Tue Mar 29 14:15:13 CEST 2011 + Releasing libmicrohttpd 0.9.9. -CG + Tue Mar 29 14:11:19 CEST 2011 Fixed call to mmap for memory pool, extended testcase to cover POLL. -CG @@ -33,12 +36,12 @@ Fri Mar 4 10:07:18 CET 2011 socket shutdown (also for thread-per-connection). -CG Thu Mar 3 21:42:47 CET 2011 - Fixing issue where Base64 decode fails when char is defined + Fixing issue where Base64 decode fails when char is defined as unsigned char (Mantis 1666). -CG/tmayer Tue Mar 1 13:58:04 CET 2011 Allow use of 'poll' in combination with the external select mode. - Avoid using pthread signals (SIGALRM), use pipe instead. + Avoid using pthread signals (SIGALRM), use pipe instead. Corrected timeout calculation (s vs. ms). -CG Wed Feb 23 14:21:44 CET 2011 diff --git a/README b/README @@ -99,7 +99,6 @@ Functions not covered by "make check": ====================================== - file_reader (response.c); special case (sendfile) - mhd_panic_std (daemon.c); special case (abort) -- MHD_poll (daemon.c) - parse_options (daemon.c) - MHD_set_panic_func (daemon.c) - MHD_get_version (daemon.c) diff --git a/configure.ac b/configure.ac @@ -1,5 +1,5 @@ # This file is part of libmicrohttpd. -# (C) 2006, 2007, 2008, 2009, 2010 Christian Grothoff (and other contributing authors) +# (C) 2006, 2007, 2008, 2009, 2010, 2011 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,15 +21,15 @@ # # AC_PREREQ(2.57) -AC_INIT([libmicrohttpd], [0.9.8],[libmicrohttpd@gnu.org]) -AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.8]) +AC_INIT([libmicrohttpd], [0.9.9],[libmicrohttpd@gnu.org]) +AM_INIT_AUTOMAKE([libmicrohttpd], [0.9.9]) AM_CONFIG_HEADER([MHD_config.h]) AC_CONFIG_MACRO_DIR([m4]) AH_TOP([#define _GNU_SOURCE 1]) -LIB_VERSION_CURRENT=16 +LIB_VERSION_CURRENT=17 LIB_VERSION_REVISION=0 -LIB_VERSION_AGE=6 +LIB_VERSION_AGE=7 AC_SUBST(LIB_VERSION_CURRENT) AC_SUBST(LIB_VERSION_REVISION) AC_SUBST(LIB_VERSION_AGE) diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -106,7 +106,7 @@ extern "C" /** * Current version of the library. */ -#define MHD_VERSION 0x00090800 +#define MHD_VERSION 0x00090900 /** * MHD-internal return code for "YES". @@ -1629,7 +1629,7 @@ const union MHD_DaemonInfo *MHD_get_daemon_info (struct MHD_Daemon *daemon, /** * Obtain the version of this library * - * @return static version string, e.g. "0.4.1" + * @return static version string, e.g. "0.9.9" */ const char* MHD_get_version(void);