From 5eed0a2e01a7d954454417f18aed98e0f2b19f0c Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 22 Jul 2010 21:17:33 +0200 Subject: network_listen: hexdump the SI2/SI2bis/SI2ter messages once we get them --- openbsc/src/ipaccess/network_listen.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'openbsc/src/ipaccess') diff --git a/openbsc/src/ipaccess/network_listen.c b/openbsc/src/ipaccess/network_listen.c index 23e404f1e..922696537 100644 --- a/openbsc/src/ipaccess/network_listen.c +++ b/openbsc/src/ipaccess/network_listen.c @@ -178,6 +178,12 @@ static int test_rep(void *_msg) binfo.arfcn, binfo.rx_lev, binfo.rx_qual, binfo.cgi.mcc, binfo.cgi.mnc, binfo.cgi.lac, binfo.cgi.ci); + if (binfo.info_type & IPAC_BINF_NEIGH_BA_SI2) + DEBUGP(DNM, "BA SI2: %s\n", hexdump(binfo.ba_list_si2, sizeof(binfo.ba_list_si2))); + if (binfo.info_type & IPAC_BINF_NEIGH_BA_SI2bis) + DEBUGP(DNM, "BA SI2bis: %s\n", hexdump(binfo.ba_list_si2bis, sizeof(binfo.ba_list_si2bis))); + if (binfo.info_type & IPAC_BINF_NEIGH_BA_SI2ter) + DEBUGP(DNM, "BA SI2ter: %s\n", hexdump(binfo.ba_list_si2ter, sizeof(binfo.ba_list_si2ter))); break; default: break; -- cgit v1.2.3