aboutsummaryrefslogtreecommitdiff
path: root/src/core/test_core_api_reliability.c
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2011-02-23 11:00:08 +0000
committerNathan S. Evans <evans@in.tum.de>2011-02-23 11:00:08 +0000
commitfe27f72b593c3d82752935bf92df10d9ed9c1e2a (patch)
tree9aef5f784913da26f97f57f882ffe197db5b28c1 /src/core/test_core_api_reliability.c
parent04518c0f2565baa715018b9546afa1858369d20e (diff)
downloadgnunet-fe27f72b593c3d82752935bf92df10d9ed9c1e2a.tar.gz
gnunet-fe27f72b593c3d82752935bf92df10d9ed9c1e2a.zip
offer hello api change
Diffstat (limited to 'src/core/test_core_api_reliability.c')
-rw-r--r--src/core/test_core_api_reliability.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/test_core_api_reliability.c b/src/core/test_core_api_reliability.c
index c1315aec6..cfb299f83 100644
--- a/src/core/test_core_api_reliability.c
+++ b/src/core/test_core_api_reliability.c
@@ -433,14 +433,14 @@ process_hello (void *cls,
433 p->hello = GNUNET_malloc (ntohs (message->size)); 433 p->hello = GNUNET_malloc (ntohs (message->size));
434 memcpy (p->hello, message, ntohs (message->size)); 434 memcpy (p->hello, message, ntohs (message->size));
435 if ((p == &p1) && (p2.th != NULL)) 435 if ((p == &p1) && (p2.th != NULL))
436 GNUNET_TRANSPORT_offer_hello (p2.th, message); 436 GNUNET_TRANSPORT_offer_hello (p2.th, message, NULL, NULL);
437 if ((p == &p2) && (p1.th != NULL)) 437 if ((p == &p2) && (p1.th != NULL))
438 GNUNET_TRANSPORT_offer_hello (p1.th, message); 438 GNUNET_TRANSPORT_offer_hello (p1.th, message, NULL, NULL);
439 439
440 if ((p == &p1) && (p2.hello != NULL)) 440 if ((p == &p1) && (p2.hello != NULL))
441 GNUNET_TRANSPORT_offer_hello (p1.th, p2.hello); 441 GNUNET_TRANSPORT_offer_hello (p1.th, p2.hello, NULL, NULL);
442 if ((p == &p2) && (p1.hello != NULL)) 442 if ((p == &p2) && (p1.hello != NULL))
443 GNUNET_TRANSPORT_offer_hello (p2.th, p1.hello); 443 GNUNET_TRANSPORT_offer_hello (p2.th, p1.hello, NULL, NULL);
444} 444}
445 445
446 446