1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copied from Linux Monitor (LiMon) - Networking.
5 * Copyright 1994 - 2000 Neil Russell.
7 * Copyright 2000 Roland Borde
8 * Copyright 2000 Paolo Scaffardi
9 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
19 * Initialize ping (beginning of netloop)
21 void ping_start(void);
24 * Deal with the receipt of a ping packet
26 * @param et Ethernet header in packet
27 * @param ip IP header in the same packet
28 * @param len Packet length
30 void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len);
32 #endif /* __PING_H__ */