iPXE
pingmgmt.h
Go to the documentation of this file.
1#ifndef _USR_PINGMGMT_H
2#define _USR_PINGMGMT_H
3
4/** @file
5 *
6 * ICMP ping management
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11FILE_SECBOOT ( PERMITTED );
12
13#include <stdint.h>
14
15extern int ping ( const char *hostname, unsigned long timeout, size_t len,
16 unsigned int count, int quiet );
17
18#endif /* _USR_PINGMGMT_H */
void timeout(int)
ring len
Length.
Definition dwmac.h:226
static unsigned int count
Number of entries.
Definition dwmac.h:220
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
int ping(const char *hostname, unsigned long timeout, size_t len, unsigned int count, int quiet)
Ping a host.
Definition pingmgmt.c:70