2 * Copied from Linux Monitor (LiMon) - Networking.
4 * Copyright 1994 - 2000 Neil Russell.
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
11 #if defined(CONFIG_CMD_PING)
20 * Initialize ping (beginning of netloop)
22 void ping_start(void);
25 * Deal with the receipt of a ping packet
27 * @param et Ethernet header in packet
28 * @param ip IP header in the same packet
29 * @param len Packet length
31 void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len);
33 #endif /* __PING_H__ */