blob: c55bd1ab22d0b7710bbc48e88fefb789145df7b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _IPXE_PING_H
#define _IPXE_PING_H
/** @file
*
* ICMP ping protocol
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/iobuf.h>
#include <ipxe/tcpip.h>
extern int ping_rx ( struct io_buffer *iobuf,
struct sockaddr_tcpip *st_src );
#endif /* _IPXE_PING_H */
|