aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dht/gnunet-service-dht.c')
-rw-r--r--src/dht/gnunet-service-dht.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dht/gnunet-service-dht.c b/src/dht/gnunet-service-dht.c
index 4b0a290b9..39433791d 100644
--- a/src/dht/gnunet-service-dht.c
+++ b/src/dht/gnunet-service-dht.c
@@ -265,6 +265,9 @@ u_address_add (void *cls,
265 struct GDS_Underlay *u = cls; 265 struct GDS_Underlay *u = cls;
266 struct MyAddress *a; 266 struct MyAddress *a;
267 267
268 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
269 "Underlay adds address %s for this peer\n",
270 address);
268 a = GNUNET_new (struct MyAddress); 271 a = GNUNET_new (struct MyAddress);
269 a->source = source; 272 a->source = source;
270 a->url = GNUNET_strdup (address); 273 a->url = GNUNET_strdup (address);
@@ -292,6 +295,9 @@ u_address_del (void *ctx)
292{ 295{
293 struct MyAddress *a = ctx; 296 struct MyAddress *a = ctx;
294 297
298 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
299 "Underlay deletes address %s for this peer\n",
300 a->url);
295 GNUNET_HELLO_builder_del_address (GDS_my_hello, 301 GNUNET_HELLO_builder_del_address (GDS_my_hello,
296 a->url); 302 a->url);
297 GNUNET_CONTAINER_DLL_remove (a_head, 303 GNUNET_CONTAINER_DLL_remove (a_head,