aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/src')
-rw-r--r--openbsc/src/gprs/gtphub.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/openbsc/src/gprs/gtphub.c b/openbsc/src/gprs/gtphub.c
index a4b0360f0..63194d8b7 100644
--- a/openbsc/src/gprs/gtphub.c
+++ b/openbsc/src/gprs/gtphub.c
@@ -1787,6 +1787,11 @@ void gtphub_init(struct gtphub *hub)
gtphub_bind_init(&hub->to_ggsns[plane_idx]);
gtphub_bind_init(&hub->to_sgsns[plane_idx]);
}
+
+ hub->to_sgsns[GTPH_PLANE_CTRL].label = "SGSN Ctrl";
+ hub->to_ggsns[GTPH_PLANE_CTRL].label = "GGSN Ctrl";
+ hub->to_sgsns[GTPH_PLANE_USER].label = "SGSN User";
+ hub->to_ggsns[GTPH_PLANE_USER].label = "GGSN User";
}
static int gtphub_make_proxy(struct gtphub *hub,
@@ -1981,7 +1986,8 @@ static struct gtphub_peer_addr *gtphub_addr_have(struct gtphub *hub,
a = gtphub_peer_add_addr(peer, addr);
- LOG("New peer address: %s\n",
+ LOG("New peer address: %s %s\n",
+ bind->label,
gsn_addr_to_str(&a->addr));
return a;