pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-hnbgw/+/29330 )
Change subject: hnbgw: Log new SCTP HNB connections ......................................................................
hnbgw: Log new SCTP HNB connections
Change-Id: I07b98ff4c3199eeab11a8c1cfd9ce44ab99bca85 --- M src/osmo-hnbgw/hnbgw.c 1 file changed, 3 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified laforge: Looks good to me, approved
diff --git a/src/osmo-hnbgw/hnbgw.c b/src/osmo-hnbgw/hnbgw.c index 7aa4e0e..5077872 100644 --- a/src/osmo-hnbgw/hnbgw.c +++ b/src/osmo-hnbgw/hnbgw.c @@ -375,6 +375,9 @@ struct hnb_gw *gw = osmo_stream_srv_link_get_data(srv); struct hnb_context *ctx;
+ LOGP(DMAIN, LOGL_INFO, "New HNB SCTP connection %s\n", + osmo_sock_get_name2(fd)); + ctx = hnb_context_alloc(gw, srv, fd); if (!ctx) return -ENOMEM;