aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-08-19 15:57:32 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-08-19 15:57:32 +0000
commit5737ce575e2fc06703d46816681f0542d8787cd6 (patch)
tree92e1c6bbd8a0b02b93b69c59e76111989ba7be93 /src
parent8427085ce0f294de6935dd94c3343e63a5fcb159 (diff)
downloadgnunet-5737ce575e2fc06703d46816681f0542d8787cd6.tar.gz
gnunet-5737ce575e2fc06703d46816681f0542d8787cd6.zip
make test resistant againt duplicate notifications
Diffstat (limited to 'src')
-rw-r--r--src/transport/test_plugin_transport.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/transport/test_plugin_transport.c b/src/transport/test_plugin_transport.c
index 60cc3c941..97a88beb5 100644
--- a/src/transport/test_plugin_transport.c
+++ b/src/transport/test_plugin_transport.c
@@ -342,6 +342,7 @@ env_notify_address (void *cls,
342 const char *plugin) 342 const char *plugin)
343{ 343{
344 struct AddressWrapper *w; 344 struct AddressWrapper *w;
345 struct AddressWrapper *wtmp;
345 void *s2a; 346 void *s2a;
346 size_t s2a_len; 347 size_t s2a_len;
347 348
@@ -351,6 +352,16 @@ env_notify_address (void *cls,
351 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 352 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
352 "Adding address of length %u\n", addrlen); 353 "Adding address of length %u\n", addrlen);
353 354
355 for (wtmp = head; NULL != wtmp; wtmp = wtmp->next)
356 {
357 if ((addrlen == wtmp->addrlen) && (0 == memcmp (addr, wtmp->addr, addrlen)))
358 {
359 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
360 "Duplicate address notification .... \n");
361 return;
362 }
363 }
364
354 w = GNUNET_new (struct AddressWrapper); 365 w = GNUNET_new (struct AddressWrapper);
355 w->addr = GNUNET_malloc (addrlen); 366 w->addr = GNUNET_malloc (addrlen);
356 w->addrlen = addrlen; 367 w->addrlen = addrlen;