]> git.gsnw.org Git - fping.git/commitdiff
more cleanup
authorDavid Schweikert <david@schweikert.ch>
Tue, 24 Jan 2017 13:12:12 +0000 (14:12 +0100)
committerDavid Schweikert <david@schweikert.ch>
Tue, 24 Jan 2017 13:12:12 +0000 (14:12 +0100)
src/fping.c

index cf390865f07816585db0769319a39cf988d7f637..cbc7cd5ab4bcc2872a44666f80bb37c8f3f355d2 100644 (file)
@@ -104,7 +104,7 @@ extern int h_errno;
 /*** Ping packet defines ***/
 
 #define MAX_IP_PACKET   65536   /* (theoretical) max IP packet size */
-#define SIZE_IP_HDR     20
+#define SIZE_IP_HDR     40
 #define SIZE_ICMP_HDR   8     /* from ip_icmp.h */
 #define MAX_PING_DATA   ( MAX_IP_PACKET - SIZE_IP_HDR - SIZE_ICMP_HDR )
 
@@ -1724,9 +1724,6 @@ int decode_icmp_ipv4(
                             icmp_unreach_str[icp->icmp_code], addr_ascii, h->host);
                 }
 
-                if( inet_addr( h->host ) == INADDR_NONE )
-                    print_warning(" (%s)", addr_ascii);
-
                 print_warning("\n" );
                 num_othericmprcvd++;
                 break;
@@ -1744,8 +1741,6 @@ int decode_icmp_ipv4(
                     print_warning("ICMP %d from %s for ICMP Echo sent to %s",
                             icp->icmp_type, addr_ascii, h->host );
                 }
-                if( inet_addr( h->host ) == INADDR_NONE )
-                    print_warning(" (%s)", addr_ascii );
                 print_warning( "\n" );
                 num_othericmprcvd++;
                 break;
@@ -1825,9 +1820,6 @@ int decode_icmp_ipv6(
                             icmp_unreach_str[icp->icmp6_code], addr_ascii, h->host);
                 }
 
-                if( inet_addr( h->host ) == INADDR_NONE )
-                    print_warning(" (%s)", addr_ascii);
-
                 print_warning("\n" );
                 num_othericmprcvd++;
                 break;
@@ -1845,8 +1837,6 @@ int decode_icmp_ipv6(
                     print_warning("ICMP %d from %s for ICMP Echo sent to %s",
                             icp->icmp6_type, addr_ascii, h->host );
                 }
-                if( inet_addr( h->host ) == INADDR_NONE )
-                    print_warning(" (%s)", addr_ascii );
                 print_warning( "\n" );
                 num_othericmprcvd++;
                 break;