16 lines
328 B
C
16 lines
328 B
C
#ifndef FT_PING_CONST
|
|
#define FT_PING_CONST
|
|
|
|
/* Default configuration values */
|
|
#define DEFAULT_COUNT 0
|
|
#define DEFAULT_PRELOAD 1
|
|
#define DEFAULT_INTERVAL 1.0
|
|
#define DEFAULT_TTL 64
|
|
#define DEFAULT_PACKET_SIZE 56
|
|
#define DEFAULT_TIMEOUT 1.0
|
|
|
|
/* Maximum values */
|
|
#define MAX_PACKET_SIZE 65507
|
|
#define MAX_TTL 255
|
|
|
|
#endif
|