aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/ipaccess
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-07-22 21:17:33 +0200
committerHarald Welte <laforge@gnumonks.org>2010-07-22 21:54:20 +0200
commit5eed0a2e01a7d954454417f18aed98e0f2b19f0c (patch)
tree2657ada9d1b6dfd7848044a172fddd437dc50d5d /openbsc/src/ipaccess
parentc95cf10d0849f0795f69ef9b5b8db76e970272a6 (diff)
network_listen: hexdump the SI2/SI2bis/SI2ter messages once we get them
Diffstat (limited to 'openbsc/src/ipaccess')
-rw-r--r--openbsc/src/ipaccess/network_listen.c6
1 files changed, 6 insertions, 0 deletions
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;