From fcb70424752762b9e86b2de80681714ef32d3e18 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Fri, 22 May 2009 17:37:01 +0200 Subject: [PATCH] olsrd plugin: Switch the terminology back to LQ and NLQ. You get used to it after a while.. --- src/olsrd.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/olsrd.c b/src/olsrd.c index 8034dab1..d9a6b17f 100644 --- a/src/olsrd.c +++ b/src/olsrd.c @@ -257,8 +257,8 @@ static int olsrd_cb_links (int lineno, /* {{{ */ static double nlq_sum; static uint32_t nlq_num; - double lq; /* tx */ - double nlq; /* rx */ + double lq; + double nlq; char *endptr; @@ -289,14 +289,14 @@ static int olsrd_cb_links (int lineno, /* {{{ */ lq = lq_sum / ((double) lq_num); DEBUG ("olsrd plugin: Average LQ: %g", lq); olsrd_submit (/* p.-inst = */ "links", /* type = */ "signal_quality", - "average-tx", lq); + "average-lq", lq); nlq = NAN; if (nlq_num > 0) nlq = nlq_sum / ((double) nlq_num); DEBUG ("olsrd plugin: Average NLQ: %g", nlq); olsrd_submit (/* p.-inst = */ "links", /* type = */ "signal_quality", - "average-rx", nlq); + "average-nlq", nlq); return (0); } @@ -325,7 +325,7 @@ static int olsrd_cb_links (int lineno, /* {{{ */ { char type_instance[DATA_MAX_NAME_LEN]; - ssnprintf (type_instance, sizeof (type_instance), "%s-%s-tx", + ssnprintf (type_instance, sizeof (type_instance), "%s-%s-lq", fields[0], fields[1]); DEBUG ("olsrd plugin: links: type_instance = %s; lq = %g;", @@ -554,7 +554,7 @@ static int olsrd_cb_topology (int lineno, /* {{{ */ char type_instance[DATA_MAX_NAME_LEN]; memset (type_instance, 0, sizeof (type_instance)); - ssnprintf (type_instance, sizeof (type_instance), "%s-%s-rx", + ssnprintf (type_instance, sizeof (type_instance), "%s-%s-lq", fields[0], fields[1]); DEBUG ("olsrd plugin: type_instance = %s; lq = %g;", type_instance, lq); olsrd_submit (/* p.-inst = */ "topology", /* type = */ "signal_quality", @@ -578,7 +578,7 @@ static int olsrd_cb_topology (int lineno, /* {{{ */ char type_instance[DATA_MAX_NAME_LEN]; memset (type_instance, 0, sizeof (type_instance)); - ssnprintf (type_instance, sizeof (type_instance), "%s-%s-tx", + ssnprintf (type_instance, sizeof (type_instance), "%s-%s-nlq", fields[0], fields[1]); DEBUG ("olsrd plugin: type_instance = %s; nlq = %g;", type_instance, nlq); olsrd_submit (/* p.-inst = */ "topology", /* type = */ "signal_quality", -- 2.11.0