From bca6f2f26a9cfc1ba6c51c264154e9396e491245 Mon Sep 17 00:00:00 2001 From: Claudius Zingerli Date: Mon, 7 Sep 2015 16:18:48 +0200 Subject: [PATCH] Transformed comments to addr.ip6; #if 0 -//FIXME: Detect little endian systems +/* FIXME: Detect little endian systems */ snprintf(p_buf, p_buf_size, "%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x", ip6[0], ip6[1], ip6[2], ip6[3], ip6[4], ip6[5], ip6[6], ip6[7], ip6[8], ip6[9], ip6[10], ip6[11], ip6[12], ip6[13], ip6[14], ip6[15]); @@ -333,7 +332,6 @@ static int chrony_connect() ERROR ("chrony plugin: Error connecting to daemon. Errno = %d", errno); return (1); } - //TODO: Set timeouts! DEBUG("chrony plugin: Connected"); g_chrony_socket = socket; @@ -459,7 +457,7 @@ static int chrony_query(int p_command, tChrony_Request *p_req, tChrony_Response } if (p_resp->header.f_seq != p_req->header.f_seq) { - //FIXME: Implement sequence number handling + /* FIXME: Implement sequence number handling */ ERROR("chrony plugin: Unexpected sequence number (Was: %d, expected: %d)", p_resp->header.f_seq, p_req->header.f_seq); return 1; } @@ -502,7 +500,7 @@ static void chrony_init_req(tChrony_Request *p_req) p_req->header.f_dummy3 = 0; } -//Code from: https://github.com/mlichvar/chrony/blob/master/util.c (GPLv2) +/* Code from: https://github.com/mlichvar/chrony/blob/master/util.c (GPLv2) */ /*BEGIN*/ #define FLOAT_EXP_BITS 7 #define FLOAT_EXP_MIN (-(1 << (FLOAT_EXP_BITS - 1))) @@ -511,7 +509,7 @@ static void chrony_init_req(tChrony_Request *p_req) #define FLOAT_COEF_MIN (-(1 << (FLOAT_COEF_BITS - 1))) #define FLOAT_COEF_MAX (-FLOAT_COEF_MIN - 1) -//double UTI_FloatNetworkToHost(Float f) +/* double UTI_FloatNetworkToHost(Float f) */ double ntohf(Float f) { int32_t exp, coef, x; @@ -551,7 +549,7 @@ static int chrony_config(const char *p_key, const char *p_value) { assert(p_key); assert(p_value); - //Parse config variables + /* Parse config variables */ if (strcasecmp(p_key, "Host") == 0) { if (g_chrony_host != NULL) @@ -587,7 +585,6 @@ static int chrony_config(const char *p_key, const char *p_value) static int chrony_read (void) { - //plugin_dispatch_values (&vl); int status,now_src; char ip_addr_str0[ IPV6_STR_MAX_SIZE]; char ip_addr_str1[IPV6_STR_MAX_SIZE]; @@ -664,8 +661,8 @@ static int chrony_read (void) chrony_push_data("clock_reachability",ip_addr_str0,ntohs(chrony_resp.body.source_data.f_reachability)); chrony_push_data("clock_last_meas", ip_addr_str0,ntohs(chrony_resp.body.source_data.f_since_sample)); chrony_push_data("clock_skew_ppm", ip_addr_str1,ntohf(chrony_resp1.body.source_stats.f_skew_ppm)); - chrony_push_data("frequency_error", ip_addr_str1,ntohf(chrony_resp1.body.source_stats.f_rtc_gain_rate_ppm)); //unit: ppm - chrony_push_data("time_offset", ip_addr_str1,ntohf(chrony_resp1.body.source_stats.f_est_offset)); //unit: s + chrony_push_data("frequency_error", ip_addr_str1,ntohf(chrony_resp1.body.source_stats.f_rtc_gain_rate_ppm)); /* unit: ppm */ + chrony_push_data("time_offset", ip_addr_str1,ntohf(chrony_resp1.body.source_stats.f_est_offset)); /* unit: s */ #endif } return (0); -- 2.11.0