summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7fb680e)
raw | patch | inline | side by side (parent: 7fb680e)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Fri, 22 May 2009 15:37:01 +0000 (17:37 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Fri, 22 May 2009 15:37:01 +0000 (17:37 +0200) |
You get used to it after a while..
src/olsrd.c | patch | blob | history |
diff --git a/src/olsrd.c b/src/olsrd.c
index 8034dab159f931657e7e8e80341285faf174d38f..d9a6b17fd94a59a1ffabdd41fcbd24137fefe7cd 100644 (file)
--- a/src/olsrd.c
+++ b/src/olsrd.c
static double nlq_sum;
static uint32_t nlq_num;
- double lq; /* tx */
- double nlq; /* rx */
+ double lq;
+ double nlq;
char *endptr;
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);
}
{
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;",
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",
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",