aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/gnunet-service-testbed_connectionpool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/testbed/gnunet-service-testbed_connectionpool.h')
-rw-r--r--src/testbed/gnunet-service-testbed_connectionpool.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/testbed/gnunet-service-testbed_connectionpool.h b/src/testbed/gnunet-service-testbed_connectionpool.h
index 589421840..54b37f6d5 100644
--- a/src/testbed/gnunet-service-testbed_connectionpool.h
+++ b/src/testbed/gnunet-service-testbed_connectionpool.h
@@ -85,13 +85,15 @@ GST_connection_pool_destroy (void);
85 * @param ac the handle to ATS, can be NULL if it is not requested 85 * @param ac the handle to ATS, can be NULL if it is not requested
86 * @param peer_id the identity of the peer. Will be NULL if ch is NULL. In other 86 * @param peer_id the identity of the peer. Will be NULL if ch is NULL. In other
87 * cases, its value being NULL means that CORE connection has failed. 87 * cases, its value being NULL means that CORE connection has failed.
88 * @param cfg configuration of the peer
88 */ 89 */
89typedef void 90typedef void
90(*GST_connection_pool_connection_ready_cb) (void *cls, 91(*GST_connection_pool_connection_ready_cb) (void *cls,
91 struct GNUNET_CORE_Handle *ch, 92 struct GNUNET_CORE_Handle *ch,
92 struct GNUNET_TRANSPORT_Handle *th, 93 struct GNUNET_TRANSPORT_Handle *th,
93 struct GNUNET_ATS_ConnectivityHandle *ac, 94 struct GNUNET_ATS_ConnectivityHandle *ac,
94 const struct GNUNET_PeerIdentity *peer_id); 95 const struct GNUNET_PeerIdentity *peer_id,
96 const struct GNUNET_CONFIGURATION_Handle *cfg);
95 97
96 98
97/** 99/**