21 lines
462 B
C
21 lines
462 B
C
#ifndef FT_PING_CONST
|
|
#define FT_PING_CONST
|
|
|
|
#include <time.h>
|
|
|
|
/* 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_LINGER 1.0
|
|
|
|
/* Maximum values */
|
|
#define MAX_PACKET_SIZE 65507
|
|
#define MAX_TTL 255
|
|
|
|
/* Minimum payload size to embed a send timestamp */
|
|
#define PING_TIMESTAMP_SIZE ((size_t)sizeof(struct timespec))
|
|
|
|
#endif
|