index
:
delta/lighttpd-git.git
master
personal/gstrauss/master
personal/stbuehler/1.4.48-mod-proxy-fix
personal/stbuehler/ci-build
personal/stbuehler/cleanup-build
personal/stbuehler/fix-fdevent
personal/stbuehler/leaks
personal/stbuehler/mod-csrf
personal/stbuehler/mod-csrf-old
git.lighttpd.net: lighttpd/lighttpd1.4.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
request.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[core] C99 restrict on some base funcs
Glenn Strauss
2020-07-08
1
-9
/
+9
*
[multiple] split con, request (very large change)
Glenn Strauss
2020-07-08
1
-21
/
+21
*
[core] move addtl request-specific struct members
Glenn Strauss
2020-07-08
1
-2
/
+2
*
[core] rename content_length to reqbody_length
Glenn Strauss
2020-07-08
1
-6
/
+6
*
[core] pass (request_st *) to request.c funcs
Glenn Strauss
2020-07-08
1
-102
/
+102
*
[core] pass http_parseopts around request.c
Glenn Strauss
2020-07-08
1
-21
/
+18
*
[core] pass scheme port to http_request_parse()
Glenn Strauss
2020-07-08
1
-2
/
+2
*
[core] move keep_alive flag into request_st
Glenn Strauss
2020-07-08
1
-5
/
+5
*
[core] copy some srv->srvconf into con->conf
Glenn Strauss
2020-07-08
1
-2
/
+2
*
[core] convenience macros to check req methods
Glenn Strauss
2020-07-08
1
-2
/
+1
*
[multiple] con->proto_default_port
Glenn Strauss
2020-07-08
1
-10
/
+5
*
[core] http_request_host_policy w/ http_parseopts
Glenn Strauss
2020-07-08
1
-4
/
+5
*
[multiple] rename r to rc rv rd wr to be different
Glenn Strauss
2020-07-08
1
-3
/
+3
*
[multiple] prefer (connection *) to (srv *)
Glenn Strauss
2020-07-08
1
-3
/
+3
*
[core] add const to callers of http_header_*_get()
Glenn Strauss
2020-02-24
1
-1
/
+1
*
[core] handle common case of alnum or - field-name
Glenn Strauss
2020-02-24
1
-3
/
+8
*
[core] more 'const' in request.c prototypes
Glenn Strauss
2020-02-24
1
-12
/
+12
*
[core] pass ptr to http_request_parse()
Glenn Strauss
2020-02-24
1
-4
/
+3
*
[core] perf: HTTP header parsing using \n offsets
Glenn Strauss
2020-02-24
1
-217
/
+202
*
[core] reduce use of struct parse_header_state
Glenn Strauss
2020-02-24
1
-69
/
+75
*
[core] pass con around request, not srv and con
Glenn Strauss
2020-02-24
1
-50
/
+50
*
[core] do not pass srv to http header parsing func
Glenn Strauss
2020-02-24
1
-1
/
+2
*
[core] http_header_str_contains_token()
Glenn Strauss
2020-02-24
1
-68
/
+9
*
[core] perf: request processing
Glenn Strauss
2020-02-24
1
-151
/
+147
*
[core] fix one-byte OOB read (underflow)
Glenn Strauss
2020-01-31
1
-2
/
+0
*
[core] reject Transfer-Encoding + Content-Length (#2985)
Glenn Strauss
2020-01-26
1
-2
/
+18
*
[core] reject WS following header field-name (fixes #2985)
Glenn Strauss
2020-01-26
1
-0
/
+13
*
[core] use buffer_eq_icase* funcs
Glenn Strauss
2019-06-06
1
-7
/
+7
*
[core] config option to allow GET w/ request body
Glenn Strauss
2019-03-07
1
-1
/
+2
*
[core] prefer memchr() over strchr()
Glenn Strauss
2019-02-17
1
-7
/
+6
*
[mod_accesslog] attempt to reconstruct req line
Glenn Strauss
2019-02-10
1
-2
/
+0
*
[core] RFC7230 HTTP-version parse
Glenn Strauss
2019-02-10
1
-42
/
+9
*
[core] get_http_method_key() match by strlen first
Glenn Strauss
2019-02-09
1
-4
/
+3
*
[core] lift code out of request line parse loop
Glenn Strauss
2019-02-09
1
-53
/
+27
*
[core] http_request_parse() mark error paths cold
Glenn Strauss
2019-02-09
1
-193
/
+74
*
[core] pass req hdrs buffer to http_request_parse
Glenn Strauss
2019-02-08
1
-22
/
+24
*
[core] prefer buffer_caseless_compare()
Glenn Strauss
2019-02-08
1
-4
/
+1
*
[core] copy request only if might need for logging
Glenn Strauss
2019-02-08
1
-32
/
+0
*
[core] log_request_header_on_error in one place
Glenn Strauss
2019-02-08
1
-65
/
+6
*
[core] parse request in connection_read_header()
Glenn Strauss
2019-02-08
1
-19
/
+1
*
[core] limit con->uri.authority < 1024 octets
Glenn Strauss
2018-11-25
1
-4
/
+16
*
[core] fix setting of headers previously reset (fixes #2919)
Glenn Strauss
2018-11-17
1
-3
/
+2
*
[core] perf: one-element cache for host normalize
Glenn Strauss
2018-10-24
1
-4
/
+20
*
[core] perf: array_reset_data_strings()
Glenn Strauss
2018-10-22
1
-1
/
+1
*
[core] abstraction layer for HTTP header manip
Glenn Strauss
2018-09-23
1
-156
/
+146
*
[core] http_request_parse_reqline() separate func
Glenn Strauss
2018-09-16
1
-29
/
+36
*
[core] simplify parsing hdr key whitespace then :
Glenn Strauss
2018-09-16
1
-45
/
+18
*
[core] code reuse with array_insert_key_value()
Glenn Strauss
2018-09-16
1
-24
/
+4
*
[core] parse header line strings before copying
Glenn Strauss
2018-09-16
1
-54
/
+50
*
[core] redo HTTP header line folding
Glenn Strauss
2018-09-16
1
-99
/
+54
[prev]
[next]