pespin has uploaded this change for review.
osmux: Log remote address upon rx of osmux pkt
Related: SYS#5987
Change-Id: I391bc02a16eae1602680cb96128252f262852e14
---
M src/common/osmux.c
1 file changed, 4 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/72/29572/1
diff --git a/src/common/osmux.c b/src/common/osmux.c
index 02faab4..e178e0c 100644
--- a/src/common/osmux.c
+++ b/src/common/osmux.c
@@ -263,9 +263,11 @@
while ((osmuxh = osmux_xfrm_output_pull(msg)) != NULL) {
struct gsm_lchan *lchan = osmux_lchan_find(bts, &rem_addr, osmuxh->circuit_id);
if (!lchan) {
+ char addr_str[64];
+ osmo_sockaddr_to_str_buf(addr_str, sizeof(addr_str), &rem_addr);
LOGP(DOSMUX, LOGL_NOTICE,
- "Cannot find lchan for circuit_id=%d\n",
- osmuxh->circuit_id);
+ "Cannot find lchan for %s CID=%d\n",
+ addr_str, osmuxh->circuit_id);
continue;
}
osmux_xfrm_output_sched(lchan->abis_ip.osmux.out, osmuxh);
To view, visit change 29572. To unsubscribe, or for help writing mail filters, visit settings.