mirror of
https://passt.top/passt
synced 2025-04-01 20:04:15 +00:00
icmp: Warn on receive errors from ping sockets
Currently we silently ignore an errors receiving a packet from a ping socket. We don't expect that to happen, so it's probably worth reporting if it does. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
a325121759
commit
6e86511f59
5
icmp.c
5
icmp.c
@ -81,8 +81,11 @@ void icmp_sock_handler(const struct ctx *c, int af, union epoll_ref ref)
|
||||
return;
|
||||
|
||||
n = recvfrom(ref.fd, buf, sizeof(buf), 0, &sr.sa, &sl);
|
||||
if (n < 0)
|
||||
if (n < 0) {
|
||||
warn("%s: recvfrom() error on ping socket: %s",
|
||||
pname, strerror(errno));
|
||||
return;
|
||||
}
|
||||
|
||||
if (af == AF_INET) {
|
||||
struct icmphdr *ih4 = (struct icmphdr *)buf;
|
||||
|
Loading…
x
Reference in New Issue
Block a user