aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-10-03 18:29:34 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2022-10-03 18:29:34 +0200
commit65f63a55c7fad7a98fb82f48b6fe4e65d6fd8fff (patch)
treeaf234fc2de1f16fec5752a697ad56030a2dcb796
parentb73c46ae97591b7758ed8e11ffda423cf9977d4a (diff)
osmux: Lower log level when osmux batch received for unknown CID
This is actually quite common, since our peer may be sending some osmux packets to us a while after we have closed the conn on our side, specially if latency is high in the network (eg satellite links). Related: SYS#598 Change-Id: I102047685b9b9f4cba43970945f955c4fe9c4c95
-rw-r--r--src/common/osmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/osmux.c b/src/common/osmux.c
index e178e0c0..8a5d1eeb 100644
--- a/src/common/osmux.c
+++ b/src/common/osmux.c
@@ -265,7 +265,7 @@ static int osmux_read_fd_cb(struct osmo_fd *ofd, unsigned int what)
if (!lchan) {
char addr_str[64];
osmo_sockaddr_to_str_buf(addr_str, sizeof(addr_str), &rem_addr);
- LOGP(DOSMUX, LOGL_NOTICE,
+ LOGP(DOSMUX, LOGL_DEBUG,
"Cannot find lchan for %s CID=%d\n",
addr_str, osmuxh->circuit_id);
continue;