Commits


gotd_request_timeout() should use log_warnx() since errno is not used here


attempt to fix lingering gotd processes from reading clients When reading clients close the connection early do not ignore this condition in session_read. The code removed here intended to handle the case of a writing client uploading a pack file, and thus does not belong into session_read.c. I overlooked this when splitting session.c into two files. This might fix an issue observed on got.g.o where the anonymous user was no longer connected and left lingering session_read and repo_read processes hanging around until the request timeout was reached.


ensure gotd request timeout gets armed even if no request is received


raise log level of message that is logged when a gotd request times out


display process title in syslog when a gotd child process exits


split gotd/session.c into session_read.c and session_write.c This makes it easier to tweak the read/write code paths separately.