commit a51f669c12bbd8a429cd87c74bf36992c3bcc4a2 from: Stefan Sperling date: Wed Apr 16 11:06:59 2025 UTC log fcgi requests which have timed out commit - 6a6496627c68099fa1c40784751e8ff6c80223ad commit + a51f669c12bbd8a429cd87c74bf36992c3bcc4a2 blob - 846104bad44117fa248ca37bdb866ed08a48f41f blob + 7224c9dcd78c7d77207edf7b6b3b93eaf437e069 --- gotwebd/fcgi.c +++ gotwebd/fcgi.c @@ -358,6 +358,8 @@ fcgi_parse_params(uint8_t *buf, uint16_t n, struct req void fcgi_timeout(int fd, short events, void *arg) { + struct request *c = arg; + log_warnx("request %u has timed out", c->request_id); fcgi_cleanup_request((struct request*) arg); }