diff --git a/packet/probe_unix.c b/packet/probe_unix.c index f7f393fc..8fd8cf1b 100644 --- a/packet/probe_unix.c +++ b/packet/probe_unix.c @@ -543,6 +543,8 @@ void report_packet_error( printf("%d address-in-use\n", command_token); } else if (errno == EADDRNOTAVAIL) { printf("%d address-not-available\n", command_token); + } else if (errno == ETIMEDOUT) { + printf("%d wait-tcp-respone-timeout\n", command_token); } else { printf("%d unexpected-error errno %d\n", command_token, errno); }