diff options
Diffstat (limited to 'plugins/check_ntp_time.c')
-rw-r--r-- | plugins/check_ntp_time.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_ntp_time.c b/plugins/check_ntp_time.c index 655541e..a5b122f 100644 --- a/plugins/check_ntp_time.c +++ b/plugins/check_ntp_time.c | |||
@@ -81,7 +81,7 @@ typedef struct { | |||
81 | 81 | ||
82 | /* this structure holds data about results from querying offset from a peer */ | 82 | /* this structure holds data about results from querying offset from a peer */ |
83 | typedef struct { | 83 | typedef struct { |
84 | time_t waiting; /* ts set when we started waiting for a response */ | 84 | time_t waiting; /* ts set when we started waiting for a response */ |
85 | int num_responses; /* number of successfully recieved responses */ | 85 | int num_responses; /* number of successfully recieved responses */ |
86 | uint8_t stratum; /* copied verbatim from the ntp_message */ | 86 | uint8_t stratum; /* copied verbatim from the ntp_message */ |
87 | double rtdelay; /* converted from the ntp_message */ | 87 | double rtdelay; /* converted from the ntp_message */ |
@@ -132,7 +132,7 @@ typedef struct { | |||
132 | they are divided into halves, each being a 16-bit int in network byte order: | 132 | they are divided into halves, each being a 16-bit int in network byte order: |
133 | - the first 16 bits are an int on the left side of a decimal point. | 133 | - the first 16 bits are an int on the left side of a decimal point. |
134 | - the second 16 bits represent a fraction n/(2^16) | 134 | - the second 16 bits represent a fraction n/(2^16) |
135 | likewise for the 64-bit "fixed point" numbers with everything doubled :) | 135 | likewise for the 64-bit "fixed point" numbers with everything doubled :) |
136 | **/ | 136 | **/ |
137 | 137 | ||
138 | /* macros to access the left/right 16 bits of a 32-bit ntp "fixed point" | 138 | /* macros to access the left/right 16 bits of a 32-bit ntp "fixed point" |
@@ -299,7 +299,7 @@ int best_offset_server(const ntp_server_results *slist, int nservers){ | |||
299 | 299 | ||
300 | /* do everything we need to get the total average offset | 300 | /* do everything we need to get the total average offset |
301 | * - we use a certain amount of parallelization with poll() to ensure | 301 | * - we use a certain amount of parallelization with poll() to ensure |
302 | * we don't waste time sitting around waiting for single packets. | 302 | * we don't waste time sitting around waiting for single packets. |
303 | * - we also "manually" handle resolving host names and connecting, because | 303 | * - we also "manually" handle resolving host names and connecting, because |
304 | * we have to do it in a way that our lazy macros don't handle currently :( */ | 304 | * we have to do it in a way that our lazy macros don't handle currently :( */ |
305 | double offset_request(const char *host, int *status){ | 305 | double offset_request(const char *host, int *status){ |
@@ -461,7 +461,7 @@ int process_arguments(int argc, char **argv){ | |||
461 | {0, 0, 0, 0} | 461 | {0, 0, 0, 0} |
462 | }; | 462 | }; |
463 | 463 | ||
464 | 464 | ||
465 | if (argc < 2) | 465 | if (argc < 2) |
466 | usage ("\n"); | 466 | usage ("\n"); |
467 | 467 | ||