mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 08:28:32 +00:00
20 lines
375 B
C
20 lines
375 B
C
|
#ifndef LWIP_PING_H
|
||
|
#define LWIP_PING_H
|
||
|
|
||
|
#include "lwip/ip_addr.h"
|
||
|
|
||
|
/**
|
||
|
* PING_USE_SOCKETS: Set to 1 to use sockets, otherwise the raw api is used
|
||
|
*/
|
||
|
#ifndef PING_USE_SOCKETS
|
||
|
#define PING_USE_SOCKETS LWIP_SOCKET
|
||
|
#endif
|
||
|
|
||
|
void ping_init(const ip_addr_t* ping_addr);
|
||
|
|
||
|
#if !PING_USE_SOCKETS
|
||
|
void ping_send_now(void);
|
||
|
#endif /* !PING_USE_SOCKETS */
|
||
|
|
||
|
#endif /* LWIP_PING_H */
|