aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_blacklist.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-07-06 13:24:20 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-07-06 13:24:20 +0000
commit56389a7d277b05c9c2968b7ebd529a12f8be15eb (patch)
tree693ef3440c9db0a2c0662d321f91fcea166176fc /src/transport/gnunet-service-transport_blacklist.c
parent88d047688f2aa11526316fdeaedb4c607bba3cf1 (diff)
downloadgnunet-56389a7d277b05c9c2968b7ebd529a12f8be15eb.tar.gz
gnunet-56389a7d277b05c9c2968b7ebd529a12f8be15eb.zip
- implementation for mantis 0002485
Diffstat (limited to 'src/transport/gnunet-service-transport_blacklist.c')
-rw-r--r--src/transport/gnunet-service-transport_blacklist.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/transport/gnunet-service-transport_blacklist.c b/src/transport/gnunet-service-transport_blacklist.c
index c71ecdfd8..8b6e45612 100644
--- a/src/transport/gnunet-service-transport_blacklist.c
+++ b/src/transport/gnunet-service-transport_blacklist.c
@@ -543,12 +543,16 @@ struct TestConnectionContext
543 * @param ats performance data 543 * @param ats performance data
544 * @param ats_count number of entries in ats (excluding 0-termination) 544 * @param ats_count number of entries in ats (excluding 0-termination)
545 * @param address the address 545 * @param address the address
546 * @param bandwidth_in inbound quota in NBO
547 * @param bandwidth_out outbound quota in NBO
546 */ 548 */
547static void 549static void
548test_connection_ok (void *cls, const struct GNUNET_PeerIdentity *neighbour, 550test_connection_ok (void *cls, const struct GNUNET_PeerIdentity *neighbour,
549 const struct GNUNET_ATS_Information *ats, 551 const struct GNUNET_ATS_Information *ats,
550 uint32_t ats_count, 552 uint32_t ats_count,
551 const struct GNUNET_HELLO_Address *address) 553 const struct GNUNET_HELLO_Address *address,
554 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
555 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out)
552{ 556{
553 struct TestConnectionContext *tcc = cls; 557 struct TestConnectionContext *tcc = cls;
554 struct GST_BlacklistCheck *bc; 558 struct GST_BlacklistCheck *bc;