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#5987
Change-Id: Idffd91b68d1f98ac906d78e7fbc0e6eaa1962f9e
This commit is contained in:
Pau Espin 2022-09-29 15:50:07 +02:00
parent 4d090d85f4
commit 48fb176fbc
1 changed files with 3 additions and 3 deletions

View File

@ -285,7 +285,7 @@ osmux_conn_lookup(struct mgcp_trunk *trunk, uint8_t local_cid, const struct osmo
}
}
LOGP(DOSMUX, LOGL_ERROR, "Cannot find osmux conn with rem_addr=%s local_cid=%d\n",
LOGP(DOSMUX, LOGL_DEBUG, "Cannot find osmux conn with rem_addr=%s local_cid=%d\n",
osmo_sockaddr_to_str(rem_addr), local_cid);
return NULL;
@ -395,7 +395,7 @@ static int osmux_handle_dummy(struct mgcp_trunk *trunk, const struct osmo_sockad
conn = osmux_conn_lookup(trunk, osmux_cid, rem_addr);
if (!conn) {
LOGP(DOSMUX, LOGL_ERROR,
LOGP(DOSMUX, LOGL_DEBUG,
"Cannot find conn for Osmux CID %d\n", osmux_cid);
goto out;
}
@ -440,7 +440,7 @@ static int osmux_read_fd_cb(struct osmo_fd *ofd, unsigned int what)
conn_src = osmux_conn_lookup(trunk, osmuxh->circuit_id,
&rem_addr);
if (!conn_src) {
LOGP(DOSMUX, LOGL_ERROR,
LOGP(DOSMUX, LOGL_DEBUG,
"Cannot find a src conn for circuit_id=%d\n",
osmuxh->circuit_id);
goto out;