blob: 9932df6b0867f892c848e87846d3287f96ed4468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef _IPXE_PINGER_H
#define _IPXE_PINGER_H
/** @file
*
* ICMP ping sender
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <ipxe/interface.h>
#include <ipxe/socket.h>
extern int create_pinger ( struct interface *job, const char *hostname,
unsigned long timeout, size_t len,
unsigned int count,
void ( * callback ) ( struct sockaddr *peer,
unsigned int sequence,
size_t len,
int rc ) );
#endif /* _IPXE_PINGER_H */
|