socket: when going down, flush all queued sockets

This commit is contained in:
Lennart Poettering 2010-07-13 00:51:48 +02:00
parent 201e673c48
commit 7c610628cd
1 changed files with 12 additions and 1 deletions

View File

@ -1033,7 +1033,18 @@ static void socket_enter_running(Socket *s, int cfd) {
/* We don't take connections anymore if we are supposed to
* shut down anyway */
if (s->meta.job && s->meta.job->type == JOB_STOP) {
close_nointr_nofail(cfd);
if (cfd >= 0)
close_nointr_nofail(cfd);
else {
/* Flush all sockets by closing and reopening them */
socket_close_fds(s);
if ((r = socket_watch_fds(s)) < 0) {
log_warning("%s failed to watch sockets: %s", s->meta.id, strerror(-r));
socket_enter_stop_pre(s, false);
}
}
return;
}