You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
232 B
C
17 lines
232 B
C
12 years ago
|
#ifndef SEQMAP_H
|
||
|
#define SEQMAP_H
|
||
|
|
||
|
#include <sys/time.h>
|
||
|
|
||
|
typedef struct seqmap_value
|
||
|
{
|
||
|
unsigned int host_nr;
|
||
|
unsigned int ping_count;
|
||
|
struct timeval ping_ts;
|
||
|
|
||
|
} SEQMAP_VALUE;
|
||
|
|
||
|
#define SEQMAP_MAXSEQ 65000
|
||
|
|
||
|
#endif
|