gtphub: add logging labels to bind struct.

Allow logging the plane (Ctrl/User) and side (SGSN/GGSN) in functions that only
have a gtphub_bind* to work with, by adding a constant label to each bind.

Sponsored-by: On-Waves ehi
diff --git a/openbsc/include/openbsc/gtphub.h b/openbsc/include/openbsc/gtphub.h
index a012566..bf5bc9e 100644
--- a/openbsc/include/openbsc/gtphub.h
+++ b/openbsc/include/openbsc/gtphub.h
@@ -370,6 +370,8 @@
 
 	/* list of struct gtphub_peer */
 	struct llist_head peers;
+
+	const char *label; /* For logging */
 };
 
 struct gtphub_resolved_ggsn {
diff --git a/openbsc/src/gprs/gtphub.c b/openbsc/src/gprs/gtphub.c
index a4b0360..63194d8 100644
--- a/openbsc/src/gprs/gtphub.c
+++ b/openbsc/src/gprs/gtphub.c
@@ -1787,6 +1787,11 @@
 		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 @@
 
 	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;