[core] log remote address on request timeouts (fixes #652)
From: Stefan Bühler <stbuehler@web.de> git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@3109 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
d8f4d20d9a
commit
06005655e6
1
NEWS
1
NEWS
|
@ -37,6 +37,7 @@ NEWS
|
|||
* [mod_magnet] define lua_pushglobaltable (for lua5.1) and use it (fixes #2719)
|
||||
* [ssl] support disabling ssl.verifyclient.activate in SNI callback (fixes #2531)
|
||||
* restart (some) syscalls after SIGCHLD interrupted them; should fix LDAP problems (fixes #2464)
|
||||
* [core] log remote address on request timeouts (fixes #652)
|
||||
|
||||
- 1.4.39 - 2016-01-02
|
||||
* [core] fix memset_s call (fixes #2698)
|
||||
|
|
|
@ -1346,8 +1346,10 @@ int main (int argc, char **argv) {
|
|||
if (srv->cur_ts - con->write_request_ts > con->conf.max_write_idle) {
|
||||
/* time - out */
|
||||
if (con->conf.log_timeouts) {
|
||||
log_error_write(srv, __FILE__, __LINE__, "sbsosds",
|
||||
"NOTE: a request for",
|
||||
log_error_write(srv, __FILE__, __LINE__, "sbsbsosds",
|
||||
"NOTE: a request from",
|
||||
con->dst_addr_buf,
|
||||
"for",
|
||||
con->request.uri,
|
||||
"timed out after writing",
|
||||
con->bytes_written,
|
||||
|
|
Loading…
Reference in New Issue