2
0
Fork 0
lighttpd2/src/main
Stefan Bühler 97dbcf7e42 [core] add option to disable buffering large request bodies on disk - forward them to backend directly instead
- right now only mod_fastcgi can handle this (it won't set the CONTENT_LENGTH env var, the backend
    has to support this too)
2013-06-01 12:31:25 +02:00
..
Makefile.am [core] Use streams 2013-05-23 12:01:04 +02:00
actions.c fix bugs and warnings from compiler warnings (memset parameter order, shadow, ...) 2013-05-25 12:59:14 +02:00
actions_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
angel.c disable some debug messages 2013-05-26 18:59:44 +02:00
angel_fake.c [core] use TCP_FASTOPEN on listening sockets if available 2013-05-25 16:15:14 +02:00
backends.c disable some debug messages 2013-05-26 18:59:44 +02:00
base_lua.c fix bugs found with clang-3.3 -fsanitize=address,undefined 2013-05-17 12:35:25 +02:00
chunk.c fix bugs and warnings from compiler warnings (memset parameter order, shadow, ...) 2013-05-25 12:59:14 +02:00
chunk_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
chunk_parser.c [chunk/network] use glib error system to report errors (instead of using virtualrequest context) 2012-03-16 15:44:22 +01:00
collect.c [common] implement libev wrapper 2013-05-23 17:56:23 +02:00
condition.c fix missing li prefixes 2013-05-23 17:56:24 +02:00
condition_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
config_lua.c [lua] add per lua_State lock 2013-05-04 13:11:25 +02:00
config_parser.rl [lua] add per lua_State lock 2013-05-04 13:11:25 +02:00
connection.c [core] add option to disable buffering large request bodies on disk - forward them to backend directly instead 2013-06-01 12:31:25 +02:00
core_lua.c [lua] add per lua_State lock 2013-05-04 13:11:25 +02:00
environment.c Add a li_const_gstring method to create fake GStrings; make some GString* parameters const 2009-10-08 14:33:47 +02:00
environment_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
etag.c Add some missing LI_/li prefixes for types and enum values 2010-08-19 17:24:07 +02:00
filter.c [filter] don't run filter on stream-dest connect 2013-05-26 20:14:49 +02:00
filter_buffer_on_disk.c wait for request body in dynamic backends, cache them on disk 2013-05-23 17:56:24 +02:00
filter_chunked.c [core] support chunked uploads 2013-05-31 16:41:32 +02:00
filters_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
http_headers.c [core] handle Connection: Upgrade 2013-05-31 20:28:53 +02:00
http_headers_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
http_range_parser.rl Add unit-testing for range-parser and fix the parser 2009-12-05 15:56:14 +01:00
http_request_parser.rl [chunk/network] use glib error system to report errors (instead of using virtualrequest context) 2012-03-16 15:44:22 +01:00
http_response_parser.rl [core] implement streams on chunkqueues 2013-05-22 18:12:15 +02:00
lighttpd_glue.c [core] remove lighttpd-glue.h from base.h 2010-09-23 18:35:57 +02:00
lighttpd_worker.c fix missing li prefixes 2013-05-23 17:56:24 +02:00
log.c fix missing li prefixes 2013-05-23 17:56:24 +02:00
mimetype.c [mime-types] Fix mimetype insert, add new test cases to catch this 2010-12-30 15:06:10 +01:00
network.c [throttle] rewrite 2013-05-23 17:56:24 +02:00
network_sendfile.c [chunk/network] use glib error system to report errors (instead of using virtualrequest context) 2012-03-16 15:44:22 +01:00
network_write.c [chunk/network] use glib error system to report errors (instead of using virtualrequest context) 2012-03-16 15:44:22 +01:00
network_writev.c [chunk/network] use glib error system to report errors (instead of using virtualrequest context) 2012-03-16 15:44:22 +01:00
options.c Split options into two categories: simple (int, bool) and ref-counted pointers 2010-01-24 23:00:51 +01:00
pattern.c [plugin_core] fix docroot pattern error handling (fixes #2362) 2011-12-18 14:59:28 +01:00
physical_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
plugin.c [lua] add per lua_State lock 2013-05-04 13:11:25 +02:00
plugin_core.c [core] add option to disable buffering large request bodies on disk - forward them to backend directly instead 2013-06-01 12:31:25 +02:00
request.c [core] support chunked uploads 2013-05-31 16:41:32 +02:00
request_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
response.c [core] handle Connection: Upgrade 2013-05-31 20:28:53 +02:00
response_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
server.c fix bugs and warnings from compiler warnings (memset parameter order, shadow, ...) 2013-05-25 12:59:14 +02:00
stat_cache.c [common] implement libev wrapper 2013-05-23 17:56:23 +02:00
stat_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
stream.c Fix filedescriptor/socket leaking 2013-05-28 11:46:41 +02:00
stream_http_response.c [core] handle Connection: Upgrade 2013-05-31 20:28:53 +02:00
stream_simple_socket.c Fix filedescriptor/socket leaking 2013-05-28 11:46:41 +02:00
subrequest_lua.c [core] handle Connection: Upgrade 2013-05-31 20:28:53 +02:00
tests.c fix bugs and warnings from compiler warnings (memset parameter order, shadow, ...) 2013-05-25 12:59:14 +02:00
throttle.c [throttle] fix memory leak 2013-05-26 18:50:21 +02:00
url_parser.rl [*cgi env]: Fix REQUEST_URI 2011-03-23 14:59:43 +01:00
value.c fix bugs and warnings from compiler warnings (memset parameter order, shadow, ...) 2013-05-25 12:59:14 +02:00
value_lua.c Fix some lua handling; add args for lua plugins/handlers 2010-02-14 15:48:25 +01:00
virtualrequest.c [core] add option to disable buffering large request bodies on disk - forward them to backend directly instead 2013-06-01 12:31:25 +02:00
virtualrequest_lua.c [lua] check values for NULL before pushing to stack 2013-05-24 11:21:13 +02:00
worker.c [core] fix connection timeout handling 2013-05-31 20:28:53 +02:00
wscript [core] Use streams 2013-05-23 12:01:04 +02:00