proc: expose HTTP Origin header in process environment
[project/uhttpd.git] / client.c
2016-06-16 Felix Fietkauuhttpd: add support for adding arbitrary headers via...
2015-10-07 Jo-Philipp Wichfix chunked transfer encoding in keepalive mode
2015-05-30 Jo-Philipp Wichclient: use 307 instead of 302 for HTTPS redirects
2015-05-30 Jo-Philipp Wichadd support for enforcing HTTPS
2015-05-30 Jo-Philipp Wichallow request handlers to disable chunked reponses
2014-10-27 Jo-Philipp Wichclient: store http code of last emitted response
2014-06-10 Jo-Philipp Wichubus: add CORS header support
2013-11-21 Felix Fietkauuhttpd: fix crashes in the ubus plugin
2013-07-31 Felix Fietkauclient: prevent further read calls after a client has...
2013-07-26 Felix Fietkaudetect chrome before safari, chrome includes Safari...
2013-07-26 Felix Fietkaudisable connection_close override if a keep-alive heade...
2013-07-26 Felix Fietkaudisable keep-alive for POST requests to improve compati...
2013-05-23 Felix Fietkaufix infinite loop when the initial two characters in...
2013-05-14 Felix Fietkauuhttpd: mark a TLS connections internally to clean...
2013-01-22 Felix Fietkaudo not reset .notify_write on request done
2013-01-19 Felix Fietkauadd support for deferring script requests, limit maximu...
2013-01-19 Felix Fietkauignore initial newlines in http requests
2013-01-19 Felix Fietkaufix container_of() on ustream callbacks
2013-01-19 Felix Fietkaupoll read data after connect as well
2013-01-19 Felix Fietkaupoll connection after request completion when using...
2013-01-19 Felix Fietkauadd user agent detection for working around keepalive...
2013-01-13 Felix Fietkaurelicense to ISC
2013-01-13 Felix Fietkaufix getting local server address
2013-01-04 Felix Fietkauadd basic tls support, todo: error handling
2013-01-04 Felix Fietkaufix resuming accept() calls after exceeding client...
2013-01-03 Felix Fietkauuse pipes instead of a socketpair, EOF handling is...
2013-01-03 Felix Fietkauimplement proper flow control for relaying postdata
2013-01-03 Felix Fietkaufix use-after-realloc issue with the request url
2013-01-03 Felix Fietkaudo not send an error on a full buffer for post data
2013-01-03 Felix Fietkaufix chunked postdata parsing
2013-01-03 Felix Fietkauadd missing n_clients decrement
2013-01-03 Felix Fietkauadd post data relaying
2013-01-03 Felix Fietkauuse a better error code for unsupported expect headers
2013-01-02 Felix Fietkaubail out on unsupported Expect: headers
2013-01-02 Felix Fietkaufix error handling of invalid http method/version
2013-01-02 Felix Fietkauadd support for sending HTTP/1.1 100 Continue
2013-01-02 Felix Fietkauadd rfc1918 filter check
2013-01-02 Felix Fietkauadd local/remote address env vars for cgi
2013-01-02 Felix Fietkaufix client state tracking and request complete handling
2013-01-01 Felix Fietkauadd preliminary cgi support, needs fixing for close...
2013-01-01 Felix Fietkauadd uh_split_header()
2013-01-01 Felix Fietkaucode cleanup
2012-12-31 Felix Fietkaufree client header buffer memory
2012-12-31 Felix Fietkaumove dispatch cbs and data to one place
2012-12-31 Felix Fietkaumake uh_path_lookup static
2012-12-31 Felix Fietkaufix 404 and 403 error handling, improve error message...
2012-12-30 Felix FietkauInitial implementation