blob: b672b9573934b3ba4c5d86b0ff4de28d636b5f4b [file] [log] [blame]
Joe Hershbergera36b12f2012-05-23 07:58:02 +00001/*
2 * Copied from Linux Monitor (LiMon) - Networking.
3 *
4 * Copyright 1994 - 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Roland Borde
7 * Copyright 2000 Paolo Scaffardi
8 * Copyright 2000-2002 Wolfgang Denk, wd@denx.de
Wolfgang Denk2ea91032014-09-30 10:44:01 +02009 * SPDX-License-Identifier: GPL-2.0
Joe Hershbergera36b12f2012-05-23 07:58:02 +000010 */
11
Joe Hershbergera36b12f2012-05-23 07:58:02 +000012#ifndef __PING_H__
13#define __PING_H__
14
15#include <common.h>
16#include <net.h>
17
18/*
19 * Initialize ping (beginning of netloop)
20 */
21void ping_start(void);
22
23/*
24 * Deal with the receipt of a ping packet
25 *
26 * @param et Ethernet header in packet
27 * @param ip IP header in the same packet
28 * @param len Packet length
29 */
Joe Hershbergercb487f52012-05-23 07:58:06 +000030void ping_receive(struct ethernet_hdr *et, struct ip_udp_hdr *ip, int len);
Joe Hershbergera36b12f2012-05-23 07:58:02 +000031
32#endif /* __PING_H__ */