Fix another logic bug that came out of recent syslogd refactoring and exposed by
the r316874: don't call shutdown(2) on all sockets, but only net ones, which seems to be the behaviour existed before that refactoring. Also don't call listen(2) in datagram sockets and fix misplaced debug messages while I am here. Reported by: peter
This commit is contained in:
parent
685ee71de7
commit
394106c573
@ -3003,10 +3003,14 @@ socksetup(struct peer *pe)
|
||||
continue;
|
||||
}
|
||||
dprintf("new socket fd is %d\n", s);
|
||||
listen(s, 5);
|
||||
if (res->ai_socktype != SOCK_DGRAM) {
|
||||
listen(s, 5);
|
||||
}
|
||||
sl_recv = socklist_recv_sock;
|
||||
dprintf("shutdown\n");
|
||||
if (SecureMode || res->ai_family == AF_LOCAL) {
|
||||
#if defined(INET) || defined(INET6)
|
||||
if (SecureMode && (res->ai_family == AF_INET ||
|
||||
res->ai_family == AF_INET6)) {
|
||||
dprintf("shutdown\n");
|
||||
/* Forbid communication in secure mode. */
|
||||
if (shutdown(s, SHUT_RD) < 0 &&
|
||||
errno != ENOTCONN) {
|
||||
@ -3014,10 +3018,11 @@ socksetup(struct peer *pe)
|
||||
if (!Debug)
|
||||
die(0);
|
||||
}
|
||||
dprintf("listening on socket\n");
|
||||
sl_recv = NULL;
|
||||
} else
|
||||
dprintf("sending on socket\n");
|
||||
#endif
|
||||
dprintf("listening on socket\n");
|
||||
dprintf("sending on socket\n");
|
||||
addsock(res->ai_addr, res->ai_addrlen,
|
||||
&(struct socklist){
|
||||
.sl_socket = s,
|
||||
|
Loading…
Reference in New Issue
Block a user