aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-12-28 10:18:03 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2020-12-28 10:18:03 +0300
commit0a88f8e439379987a478ddb184289a505f570614 (patch)
tree766203da452ab92cd8caf45cc57e0202caa6d5f3 /ChangeLog
parentf1ba9b430e0ae547b62f25d40130eb26502f2bcb (diff)
downloadlibmicrohttpd-0a88f8e439379987a478ddb184289a505f570614.tar.gz
libmicrohttpd-0a88f8e439379987a478ddb184289a505f570614.zip
ChangeLog updated
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 23fe789f..274eb08a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
1Mon 28 Dec 2020 09:37:00 MSK
2 Completely reworked and rewritten TCP_CORK, TCP_NOPUSH, TCP_NODELAY and
3 MSG_MORE handling. Reduced number of sys-calls, fixed portability for
4 FreeBSD, OpenBSD, NetBSD, Darwin, W32.
5 Removed usage of gnutls_record_cork() as it fully blocks stream until
6 final block is ready.
7 Fixed compatibility with C90 compilers.
8 Really started using sendmsg() for header + body combined single-call
9 response sending.
10 Fixed sending of response body by sendmsg() when it shouldn't be sent,
11 like responses for HEAD requests.
12 Improved error handling for gnutls_record_send().
13 Updated W32 resources for .DLLs.
14 Fixed building with various disabled features (like messages, HTTPS,
15 http-upgrade, authorization etc.)
16 Fixed possible SIGPIPE generation when sendfile() is used (it was always
17 possible on Linux that sendfile() produce SIGPIPE, now it's fixed).
18 Several compiler warnings muted and/or fixed in the lib code and in
19 the examples. -EG
20
1Sun 01 Nov 2020 17:17:00 MSK 21Sun 01 Nov 2020 17:17:00 MSK
2 Fixed conflict with system CPU_COUNT macro. 22 Fixed conflict with system CPU_COUNT macro.
3 Minor improvements of error reporting in MHD daemon. 23 Minor improvements of error reporting in MHD daemon.