libmicrohttpd

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

commit e2992d55a97450a2795412604a48b7a69983aecb
parent 9eb27c8dbe1939344ccced9c498895f0e92e8197
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun,  5 May 2013 18:20:12 +0000

-directory was renamed

Diffstat:
Msrc/examples/Makefile.am | 26+++++++++++++-------------
Msrc/include/microhttpd.h | 2+-
Msrc/microhttpd/Makefile.am | 8++++----
Msrc/testcurl/Makefile.am | 68++++++++++++++++++++++++++++++++++----------------------------------
Msrc/testcurl/https/Makefile.am | 20++++++++++----------
Msrc/testzzuf/Makefile.am | 26+++++++++++++-------------
6 files changed, 75 insertions(+), 75 deletions(-)

diff --git a/src/examples/Makefile.am b/src/examples/Makefile.am @@ -53,66 +53,66 @@ endif minimal_example_SOURCES = \ minimal_example.c minimal_example_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la demo_SOURCES = \ demo.c demo_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ -lmagic dual_stack_example_SOURCES = \ dual_stack_example.c dual_stack_example_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la post_example_SOURCES = \ post_example.c post_example_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ $(IBERTY) minimal_example_comet_SOURCES = \ minimal_example_comet.c minimal_example_comet_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la authorization_example_SOURCES = \ authorization_example.c authorization_example_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la digest_auth_example_SOURCES = \ digest_auth_example.c digest_auth_example_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la refuse_post_example_SOURCES = \ refuse_post_example.c refuse_post_example_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la querystring_example_SOURCES = \ querystring_example.c querystring_example_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la fileserver_example_SOURCES = \ fileserver_example.c fileserver_example_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la fileserver_example_dirs_SOURCES = \ fileserver_example_dirs.c fileserver_example_dirs_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la fileserver_example_external_select_SOURCES = \ fileserver_example_external_select.c fileserver_example_external_select_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la https_fileserver_example_SOURCES = \ https_fileserver_example.c https_fileserver_example_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la 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 0x00092001 +#define MHD_VERSION 0x00092100 /** * MHD-internal return code for "YES". diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am @@ -74,19 +74,19 @@ TESTS = $(check_PROGRAMS) test_daemon_SOURCES = \ test_daemon.c test_daemon_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la test_postprocessor_SOURCES = \ test_postprocessor.c test_postprocessor_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la test_postprocessor_amp_SOURCES = \ test_postprocessor_amp.c test_postprocessor_amp_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la test_postprocessor_large_SOURCES = \ test_postprocessor_large.c test_postprocessor_large_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la diff --git a/src/testcurl/Makefile.am b/src/testcurl/Makefile.am @@ -80,203 +80,203 @@ libcurl_version_check_a_SOURCES = \ test_start_stop_SOURCES = \ test_start_stop.c test_start_stop_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la test_options_SOURCES = \ test_options.c test_options_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la test_get_SOURCES = \ test_get.c test_get_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_quiesce_SOURCES = \ test_quiesce.c test_quiesce_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_callback_SOURCES = \ test_callback.c test_callback_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ perf_get_SOURCES = \ perf_get.c \ gauger.h perf_get_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ perf_get_concurrent_SOURCES = \ perf_get_concurrent.c \ gauger.h perf_get_concurrent_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_digestauth_SOURCES = \ test_digestauth.c test_digestauth_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_digestauth_with_arguments_SOURCES = \ test_digestauth_with_arguments.c test_digestauth_with_arguments_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_get_sendfile_SOURCES = \ test_get_sendfile.c test_get_sendfile_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_urlparse_SOURCES = \ test_urlparse.c test_urlparse_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_get_response_cleanup_SOURCES = \ test_get_response_cleanup.c test_get_response_cleanup_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la + $(top_builddir)/src/microhttpd/libmicrohttpd.la test_get_chunked_SOURCES = \ test_get_chunked.c test_get_chunked_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post_SOURCES = \ test_post.c test_post_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_process_headers_SOURCES = \ test_process_headers.c test_process_headers_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_parse_cookies_SOURCES = \ test_parse_cookies.c test_parse_cookies_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_process_arguments_SOURCES = \ test_process_arguments.c test_process_arguments_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_postform_SOURCES = \ test_postform.c test_postform_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post_loop_SOURCES = \ test_post_loop.c test_post_loop_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put_SOURCES = \ test_put.c test_put_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put_chunked_SOURCES = \ test_put_chunked.c test_put_chunked_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_get11_SOURCES = \ test_get.c test_get11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_get_sendfile11_SOURCES = \ test_get_sendfile.c test_get_sendfile11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post11_SOURCES = \ test_post.c test_post11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_postform11_SOURCES = \ test_postform.c test_postform11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post_loop11_SOURCES = \ test_post_loop.c test_post_loop11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put11_SOURCES = \ test_put.c test_put11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_large_put_SOURCES = \ test_large_put.c test_large_put_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_large_put11_SOURCES = \ test_large_put.c test_large_put11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_long_header_SOURCES = \ test_long_header.c test_long_header_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_long_header11_SOURCES = \ test_long_header.c test_long_header11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_iplimit11_SOURCES = \ test_iplimit.c test_iplimit11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_termination_SOURCES = \ test_termination.c test_termination_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_timeout_SOURCES = \ test_timeout.c test_timeout_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ diff --git a/src/testcurl/https/Makefile.am b/src/testcurl/https/Makefile.am @@ -46,7 +46,7 @@ test_https_time_out_SOURCES = \ tls_test_common.c test_https_time_out_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ test_tls_options_SOURCES = \ @@ -54,7 +54,7 @@ test_tls_options_SOURCES = \ tls_test_common.c test_tls_options_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ test_https_get_parallel_SOURCES = \ @@ -62,7 +62,7 @@ test_https_get_parallel_SOURCES = \ tls_test_common.c test_https_get_parallel_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ test_empty_response_SOURCES = \ @@ -70,7 +70,7 @@ test_empty_response_SOURCES = \ tls_test_common.c test_empty_response_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ test_https_get_parallel_threads_SOURCES = \ @@ -78,7 +78,7 @@ test_https_get_parallel_threads_SOURCES = \ tls_test_common.c test_https_get_parallel_threads_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ test_tls_authentication_SOURCES = \ @@ -86,7 +86,7 @@ test_tls_authentication_SOURCES = \ tls_test_common.c test_tls_authentication_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ test_https_session_info_SOURCES = \ @@ -94,7 +94,7 @@ test_https_session_info_SOURCES = \ tls_test_common.c test_https_session_info_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ test_https_multi_daemon_SOURCES = \ @@ -102,7 +102,7 @@ test_https_multi_daemon_SOURCES = \ tls_test_common.c test_https_multi_daemon_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ test_https_get_SOURCES = \ @@ -110,7 +110,7 @@ test_https_get_SOURCES = \ tls_test_common.c test_https_get_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ test_https_get_select_SOURCES = \ @@ -118,6 +118,6 @@ test_https_get_select_SOURCES = \ tls_test_common.c test_https_get_select_LDADD = \ $(top_builddir)/src/testcurl/libcurl_version_check.a \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ -lgnutls @LIBGCRYPT_LIBS@ diff --git a/src/testzzuf/Makefile.am b/src/testzzuf/Makefile.am @@ -32,43 +32,43 @@ TESTS = $(check_PROGRAMS) test_get_SOURCES = \ test_get.c test_get_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_get_chunked_SOURCES = \ test_get_chunked.c test_get_chunked_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post_SOURCES = \ test_post.c test_post_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post_form_SOURCES = \ test_post_form.c test_post_form_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put_SOURCES = \ test_put.c test_put_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put_chunked_SOURCES = \ test_put_chunked.c test_put_chunked_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put_large_SOURCES = \ test_put_large.c test_put_large_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ @@ -76,35 +76,35 @@ test_put_large_LDADD = \ test_get11_SOURCES = \ test_get.c test_get11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post11_SOURCES = \ test_post.c test_post11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_post_form11_SOURCES = \ test_post_form.c test_post_form11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put11_SOURCES = \ test_put.c test_put11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_put_large11_SOURCES = \ test_put_large.c test_put_large11_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@ test_long_header_SOURCES = \ test_long_header.c test_long_header_LDADD = \ - $(top_builddir)/src/daemon/libmicrohttpd.la \ + $(top_builddir)/src/microhttpd/libmicrohttpd.la \ @LIBCURL@