From 0c4dbd481aedb5d22c1048e7f7eb547a3b5e50a5 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Mon, 18 Sep 2017 16:28:43 +0200 Subject: regularize format of source file headers, no code changes Signed-off-by: Denys Vlasenko --- networking/ping.c | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 deletions(-) (limited to 'networking/ping.c') diff --git a/networking/ping.c b/networking/ping.c index 7460e4414..774f8f3e0 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -24,28 +24,6 @@ * This version is an adaptation of ping.c from busybox. * The code was modified by Bart Visscher */ - -#include -#include -#include "libbb.h" -#include "common_bufsiz.h" - -#ifdef __BIONIC__ -/* should be in netinet/ip_icmp.h */ -# define ICMP_DEST_UNREACH 3 /* Destination Unreachable */ -# define ICMP_SOURCE_QUENCH 4 /* Source Quench */ -# define ICMP_REDIRECT 5 /* Redirect (change route) */ -# define ICMP_ECHO 8 /* Echo Request */ -# define ICMP_TIME_EXCEEDED 11 /* Time Exceeded */ -# define ICMP_PARAMETERPROB 12 /* Parameter Problem */ -# define ICMP_TIMESTAMP 13 /* Timestamp Request */ -# define ICMP_TIMESTAMPREPLY 14 /* Timestamp Reply */ -# define ICMP_INFO_REQUEST 15 /* Information Request */ -# define ICMP_INFO_REPLY 16 /* Information Reply */ -# define ICMP_ADDRESS 17 /* Address Mask Request */ -# define ICMP_ADDRESSREPLY 18 /* Address Mask Reply */ -#endif - //config:config PING //config: bool "ping (9.5 kb)" //config: default y @@ -136,6 +114,27 @@ //usage: "1 packets transmitted, 1 packets received, 0% packet loss\n" //usage: "round-trip min/avg/max = 20.1/20.1/20.1 ms\n" +#include +#include +#include "libbb.h" +#include "common_bufsiz.h" + +#ifdef __BIONIC__ +/* should be in netinet/ip_icmp.h */ +# define ICMP_DEST_UNREACH 3 /* Destination Unreachable */ +# define ICMP_SOURCE_QUENCH 4 /* Source Quench */ +# define ICMP_REDIRECT 5 /* Redirect (change route) */ +# define ICMP_ECHO 8 /* Echo Request */ +# define ICMP_TIME_EXCEEDED 11 /* Time Exceeded */ +# define ICMP_PARAMETERPROB 12 /* Parameter Problem */ +# define ICMP_TIMESTAMP 13 /* Timestamp Request */ +# define ICMP_TIMESTAMPREPLY 14 /* Timestamp Reply */ +# define ICMP_INFO_REQUEST 15 /* Information Request */ +# define ICMP_INFO_REPLY 16 /* Information Reply */ +# define ICMP_ADDRESS 17 /* Address Mask Request */ +# define ICMP_ADDRESSREPLY 18 /* Address Mask Reply */ +#endif + #if ENABLE_PING6 # include /* I see RENUMBERED constants in bits/in.h - !!? -- cgit v1.2.3