aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd
Commit message (Collapse)AuthorAge
...
* Change default listen backlog size from 32 to SOMAXCONN, allow to specify ↵Evgeny Grin (Karlson2k)2015-12-08
| | | | required listen backlog size
* MHD_select(): handle at least some of pending connections instead of failing ↵Evgeny Grin (Karlson2k)2015-12-08
| | | | without any data processing
* daemon.c: rename variables 'max' to prevent conflicts with system macrosEvgeny Grin (Karlson2k)2015-12-08
|
* MHD_get_fdset() & MHD_get_fdset2(): continue to add FDs to sets in case of ↵Evgeny Grin (Karlson2k)2015-12-08
| | | | error.
* daemon.c: print log messages when dealing with fdsets on all platforms;Evgeny Grin (Karlson2k)2015-12-08
| | | | replace listen socket in fdset with pipe FD instead of failing if no fdset space is available on W32.
* Added missing filesEvgeny Grin (Karlson2k)2015-12-08
|
* Use real system default value of FD_SETSIZE instead of guessingEvgeny Grin (Karlson2k)2015-12-08
|
* Handle redefined FD_SETSIZE and really redefine FD_SETSIZE for W32Evgeny Grin (Karlson2k)2015-12-07
|
* aggressively close sockets in multi-threaded operationChristian Grothoff2015-12-05
|
* connection.c: refactor get_date_string() for clarity, distinguishEvgeny Grin (Karlson2k)2015-12-03
| | | | different gmtime_s() forms, support C11 gmtime_s()
* Eliminate delay of response on platforms where socket flushing is not possible,Evgeny Grin (Karlson2k)2015-12-01
| | | | | send header to clients without delay on all platforms to allow clients to take some action depending on header content, send "100 continue" without delay.
* Reduce last packet response delay observable with keep-alive on BSD and ↵Evgeny Grin (Karlson2k)2015-11-25
| | | | Darwin platforms
* Fix type introduced in SVN 36682Evgeny Grin (Karlson2k)2015-11-24
|
* Add and use _MHD_SOCKOPT_BOOL_TYPE for simplify usage of setsockopt() on ↵Evgeny Grin (Karlson2k)2015-11-21
| | | | W32/POSIX sockets.
* Hi folks,Christian Grothoff2015-11-10
| | | | | | | | | | | | | | | | I guess i found a problem with suspended connections. There is a scenarion where one can resume a connection and then stop the daemon without gives the daemon the oportunity to really resume the connection. In this case, microhttpd will abort telling one that there is suspended connection (because the connection is still in the daemon's suspended list). The following patch solves the problem (i've this problem using external mainloop). Regards, Flavio Ceolin
* -fix shrinkageChristian Grothoff2015-11-06
|
* connection.c: use faster and better checks for empty linesEvgeny Grin (Karlson2k)2015-11-04
|
* -add patch from Eugenio PerezChristian Grothoff2015-11-03
|
* -fix by undoing part of 36568Christian Grothoff2015-11-03
|
* -needs to be mv, not cpChristian Grothoff2015-10-30
|
* realize suggestion from FC on MHD list to improve ↵Christian Grothoff2015-10-25
| | | | MHD_get_connection_values() when used with a bitmask
* -fix assertion failure from race on shutdown and buffer shrinkage with ↵Christian Grothoff2015-10-25
| | | | pipelining
* doxygenChristian Grothoff2015-10-25
|
* -doxygenChristian Grothoff2015-10-25
|
* -eol spacesChristian Grothoff2015-10-25
|
* -doxygenChristian Grothoff2015-10-25
|
* -doxygenChristian Grothoff2015-10-25
|
* deduplicate arg parsing logic between connection.c and digestauth.c (now in ↵Christian Grothoff2015-10-05
| | | | internal.c)
* daemon.c: silent compiler warningEvgeny Grin (Karlson2k)2015-09-30
|
* fix digest auth when used with more complex arguments being passed to GET, ↵Christian Grothoff2015-09-25
| | | | i.e. keys without missing values at the beginning and certain other constellations
* help systemd by not calling shutdown() on listen socket if ↵Christian Grothoff2015-09-22
| | | | MHD_USE_PIPE_FOR_SHUTDOWN is given
* -releasing 0.9.43Christian Grothoff2015-09-16
|
* connection_https.c: include "connection.h" alongside with "connection_https.h"Evgeny Grin (Karlson2k)2015-09-07
|
* Include correct header in connection_https.cEvgeny Grin (Karlson2k)2015-09-06
|
* daemon.c: use correct type for setsockopt() on W32, do not use same var name ↵Evgeny Grin (Karlson2k)2015-09-06
| | | | for nested branches
* Fix mixed code/var declarationEvgeny Grin (Karlson2k)2015-09-06
|
* Fix compiler warnings; use correct variable typeEvgeny Grin (Karlson2k)2015-09-06
|
* digestauth.c: fix compiler warnings, clarificationsEvgeny Grin (Karlson2k)2015-09-06
|
* Update built-in tsearch replacementEvgeny Grin (Karlson2k)2015-09-06
|
* daemon.c: MHD_ip_limit_add(): small clarificationEvgeny Grin (Karlson2k)2015-09-06
|
* patch from FC to fix use of resume in combination with external selectChristian Grothoff2015-09-02
|
* correct documentation as to when MHD_USE_EPOLL_LINUX_ONLY is allowed ↵Christian Grothoff2015-08-30
| | | | (previous formulation was wrong)
* Reimplement monotonic clock with wide range of platforms supportEvgeny Grin (Karlson2k)2015-08-27
|
* fix file names, include missing files to MakefileEvgeny Grin (Karlson2k)2015-08-22
|
* export MHD_get_reason_phrase_forChristian Grothoff2015-08-14
|
* Additional byte order detection in MHD_byteorder.h and some cosmeticsEvgeny Grin (Karlson2k)2015-08-09
|
* Updated ChangeLog, added missing newlineEvgeny Grin (Karlson2k)2015-08-08
|
* daemon.c: recv_param_adapter(): fix VS compiler warning for send()/recv()Evgeny Grin (Karlson2k)2015-08-08
|
* daemon.c: MHD_select(): check for timeout value overflowEvgeny Grin (Karlson2k)2015-08-08
|
* daemon.c: MHD_get_timeout(): check for value overflowEvgeny Grin (Karlson2k)2015-08-08
|