aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2022-04-23 11:00:08 +0200
committerHarald Welte <laforge@osmocom.org>2022-04-23 11:00:59 +0200
commit92f9ddc4687876fe17bcc96b869aaf55eccf9c34 (patch)
tree581d2bafe932f88760c044189fbafe20864c62c5 /src
parente8e62c4b3125128ed75b59282ce3df18dd891855 (diff)
e1oip: fix line counter descriptions
The direction is wrong in two counter descriptions Change-Id: Ia294af4b30eec1b32c4b15892751d360608c8333
Diffstat (limited to 'src')
-rw-r--r--src/octoi/e1oip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/octoi/e1oip.c b/src/octoi/e1oip.c
index 87457db..cd07178 100644
--- a/src/octoi/e1oip.c
+++ b/src/octoi/e1oip.c
@@ -46,8 +46,8 @@
static const struct rate_ctr_desc iline_ctr_description[] = {
[LINE_CTR_E1oIP_UNDERRUN] = { "e1oip:underrun", "Frames underrun / slipped in IP->E1 direction"},
[LINE_CTR_E1oIP_SUBSTITUTED] = { "e1oip:substituted", "Frames substituted in E1->IP direction"},
- [LINE_CTR_E1oIP_E1T_OVERFLOW] = { "e1oip:e1t_overflow", "Frames overflowing the RIFO in E1->IP direction"},
- [LINE_CTR_E1oIP_E1O_OVERFLOW] = { "e1oip:e1o_overflow", "Frames overflowed in IP->E1 direction"},
+ [LINE_CTR_E1oIP_E1T_OVERFLOW] = { "e1oip:e1t_overflow", "Frames overflowing the RIFO in IP->E1 direction"},
+ [LINE_CTR_E1oIP_E1O_OVERFLOW] = { "e1oip:e1o_overflow", "Frames overflowed in E1->IP direction"},
[LINE_CTR_E1oIP_RX_OUT_OF_ORDER] = { "e1oip:rx:pkt_out_of_order", "Packets out-of-order in IP->E1 direction"},
[LINE_CTR_E1oIP_RX_OUT_OF_WIN] = { "e1oip:rx:pkt_out_of_win", "Packets out-of-rx-window in IP->E1 direction"},
[LINE_CTR_E1oIP_CONNECT_ACCEPT] = { "e1oip:connect_accepted", "OCTOI connections entering accepted state" },