source: azure_iot_hub_f767zi/trunk/asp_baseplatform/lwip/contrib-2.1.0/apps/ping/ping.h

Last change on this file was 457, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 375 bytes
Line 
1#ifndef LWIP_PING_H
2#define LWIP_PING_H
3
4#include "lwip/ip_addr.h"
5
6/**
7 * PING_USE_SOCKETS: Set to 1 to use sockets, otherwise the raw api is used
8 */
9#ifndef PING_USE_SOCKETS
10#define PING_USE_SOCKETS LWIP_SOCKET
11#endif
12
13void ping_init(const ip_addr_t* ping_addr);
14
15#if !PING_USE_SOCKETS
16void ping_send_now(void);
17#endif /* !PING_USE_SOCKETS */
18
19#endif /* LWIP_PING_H */
Note: See TracBrowser for help on using the repository browser.