mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
17 lines
322 B
C
17 lines
322 B
C
#ifndef LWIP_PING_H
|
|
#define LWIP_PING_H
|
|
|
|
#include "lwip/opt.h"
|
|
|
|
/**
|
|
* PING_USE_SOCKETS: Set to 1 to use sockets, otherwise the raw api is used
|
|
*/
|
|
#ifdef LPKG_PING_USING_SOCKET
|
|
#define PING_USE_SOCKETS 1
|
|
#else
|
|
#define PING_USE_SOCKETS 0
|
|
#endif
|
|
|
|
extern void cmd_ping(int argc, char **argv);
|
|
#endif /* LWIP_PING_H */
|