aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* fix dist issuev0.9.54Christian Grothoff2017-05-02
|
* documentation, adding MHD_CONNECTION_INFO_REQUEST_HEADER_SIZE, releasing 0.9.54Christian Grothoff2017-05-02
|
* Replaced flags MHD_USE_PEDANTIC_CHECKS and MHD_USE_PERMISSIVE_CHECKS byEvgeny Grin (Karlson2k)2017-04-27
| | | | single option MHD_OPTION_STRICT_FOR_CLIENT.
* Fixed processing MHD_OPTION_HTTPS_CRED_TYPE in MHD_OPTION_ARRAY.Evgeny Grin (Karlson2k)2017-04-27
| | | | Underlying type can be not int.
* mhd_str.c: fixed c/p error in commentEvgeny Grin (Karlson2k)2017-04-26
|
* reason_phrase.c: Fixed shift in HTTP reasons strings.Evgeny Grin (Karlson2k)2017-04-26
| | | | Added test for HTTP reasons strings.
* MHD_start_daemon(): allow MHD_USE_POLL only with ↵Evgeny Grin (Karlson2k)2017-04-25
| | | | | | MHD_USE_THREAD_PER_CONNECTION for backward compatibility. New applications are advised to use MHD_USE_INTERNAL_POLLING_THREAD with MHD_USE_THREAD_PER_CONNECTION.
* relax space-in-field-name checks only if new MHD_USE_PERMISSIVE_CHECKS flag ↵Christian Grothoff2017-04-24
| | | | is set
* enforce RFC 7230 no-whitespace in header field name rule if ↵Christian Grothoff2017-04-23
| | | | MHD_USE_PEDANTIC_CHECKS is set
* replace sprintf() with MHD_snprintf_()Christian Grothoff2017-04-23
|
* Fixed support for old libgcrypt on W32 with W32 threads.Evgeny Grin (Karlson2k)2017-04-22
|
* configure: refactoring to be consistent with other configure variablesEvgeny Grin (Karlson2k)2017-04-14
|
* configure: check for invalid "with-thread" parametersEvgeny Grin (Karlson2k)2017-04-14
|
* connection.c: silent compiler warningEvgeny Grin (Karlson2k)2017-04-12
|
* Fixed GNU/Linux builds without epollEvgeny Grin (Karlson2k)2017-04-12
|
* Releasing GNU libmicrohttpd 0.9.53v0.9.53Evgeny Grin (Karlson2k)2017-04-11
|
* Added VS2017 project files to tarballEvgeny Grin (Karlson2k)2017-04-11
|
* Updated more M4 autoconf macrosEvgeny Grin (Karlson2k)2017-04-11
|
* clarify commentChristian Grothoff2017-04-11
|
* test_get_response_cleanup: ignore SIGPIPE on SolarisEvgeny Grin (Karlson2k)2017-04-10
|
* Cosmetic fixesEvgeny Grin (Karlson2k)2017-04-10
|
* HTTPS test fixes and improvements:Evgeny Grin (Karlson2k)2017-04-10
| | | | | | | | always skip tests if libcurl do not support HTTPS (instead of failing) return 99 in case of global errors (MHD-unrelated) print error result if test if failed fixed ignored result of epoll test in test_https_get_select allow compilation by C89 compiler
* configure: better test for "-Werror=attributes"Evgeny Grin (Karlson2k)2017-04-10
|
* Fixed compatibility with platforms without poll()Evgeny Grin (Karlson2k)2017-04-10
|
* Updated M4 autoconf-archive macros to latest versionsEvgeny Grin (Karlson2k)2017-04-10
|
* configure: use libgcrypt CPPFLAGS and LDFLAGS for building with GnuTLS if ↵Evgeny Grin (Karlson2k)2017-04-10
| | | | they are used in configure
* configure: fixed detection of "pthread_np.h" on OpenBSDEvgeny Grin (Karlson2k)2017-04-09
|
* HTTPS tests: improved compatibility with some platforms/libcurl versionsEvgeny Grin (Karlson2k)2017-04-09
|
* mhd_sockets.c: Fixed compiler warningEvgeny Grin (Karlson2k)2017-04-06
|
* zzuf tests: make compatible with *BSD by replacing obsoleted setpgrp() with ↵Evgeny Grin (Karlson2k)2017-04-06
| | | | setpgid().
* Used "127.0.0.1" instead of "localhost" in all tests to avoid accidental try ↵Evgeny Grin (Karlson2k)2017-04-06
| | | | by IPv6
* Fixed hypothetical situation when timeout could be larger than possible to ↵Evgeny Grin (Karlson2k)2017-04-05
| | | | | | | measure. Fixed detecting real closest timeout deadline when value wraps upper limit. Fixed compiler warnings.
* daemon.c: Removed useless extra ";"Evgeny Grin (Karlson2k)2017-04-05
|
* Updated autoinit_funcs.h to latest upstream version with proper support of ↵Evgeny Grin (Karlson2k)2017-04-05
| | | | Oracle/Sun compiler.
* Fixed wrong macro name in 218694a400beaf164712121475a6e22fd01b7b71Evgeny Grin (Karlson2k)2017-04-05
|
* Converted many 'strlen()' from run-time to compile-time processingEvgeny Grin (Karlson2k)2017-04-05
|
* digestauth.c: fixed snprintf() error detection, used calloc instead of ↵Evgeny Grin (Karlson2k)2017-04-05
| | | | malloc (security).
* Fixed some compiler warningsEvgeny Grin (Karlson2k)2017-04-05
|
* ChangeLog: added missing entries.Evgeny Grin (Karlson2k)2017-03-30
|
* must pass size_t to default_handlerChristian Grothoff2017-03-29
|
* add document encoding hintChristian Grothoff2017-03-29
|
* Simplified VS projects filesEvgeny Grin (Karlson2k)2017-03-27
|
* Added VS2017 project filesEvgeny Grin (Karlson2k)2017-03-27
|
* Fixed non-TLS builds after 7b0d92902c92782844e84e40ab54d58a65531a65Evgeny Grin (Karlson2k)2017-03-27
|
* MHD_start_daemon(): fixed c/p error resulted in nonfunctional SO_EXCLBIND on ↵Evgeny Grin (Karlson2k)2017-03-26
| | | | Solaris
* configure: improved detection and usage of 'librt'Evgeny Grin (Karlson2k)2017-03-26
|
* Fixed MHD_quiesce_daemon() after 7b0d92902c92782844e84e40ab54d58a65531a65Evgeny Grin (Karlson2k)2017-03-26
|
* MHD_start_daemon(): obey MHD_USE_ITC in thread pool modeEvgeny Grin (Karlson2k)2017-03-26
|
* MHD_start_daemon(): removed initialisation of ITC for master daemon in ↵Evgeny Grin (Karlson2k)2017-03-26
| | | | | | | thread pool mode as global ITC is not monitored. Fixed gnutls priorities deinitialization if ITC failed
* MHD_select(): Removed bogus extra checkEvgeny Grin (Karlson2k)2017-03-26
|