aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/cadet_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cadet/cadet_api.c')
-rw-r--r--src/cadet/cadet_api.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cadet/cadet_api.c b/src/cadet/cadet_api.c
index c9f2a11bb..decf473a9 100644
--- a/src/cadet/cadet_api.c
+++ b/src/cadet/cadet_api.c
@@ -1547,12 +1547,12 @@ GC_u2h (uint32_t port)
1547 * @return Handle to the cadet service NULL on error. 1547 * @return Handle to the cadet service NULL on error.
1548 */ 1548 */
1549struct GNUNET_CADET_Handle * 1549struct GNUNET_CADET_Handle *
1550GNUNET_CADET_connecT (const struct GNUNET_CONFIGURATION_Handle *cfg) 1550GNUNET_CADET_connect (const struct GNUNET_CONFIGURATION_Handle *cfg)
1551{ 1551{
1552 struct GNUNET_CADET_Handle *h; 1552 struct GNUNET_CADET_Handle *h;
1553 1553
1554 LOG (GNUNET_ERROR_TYPE_DEBUG, 1554 LOG (GNUNET_ERROR_TYPE_DEBUG,
1555 "GNUNET_CADET_connecT()\n"); 1555 "GNUNET_CADET_connect()\n");
1556 h = GNUNET_new (struct GNUNET_CADET_Handle); 1556 h = GNUNET_new (struct GNUNET_CADET_Handle);
1557 h->cfg = cfg; 1557 h->cfg = cfg;
1558 h->ports = GNUNET_CONTAINER_multihashmap_create (4, 1558 h->ports = GNUNET_CONTAINER_multihashmap_create (4,
@@ -1586,7 +1586,7 @@ GNUNET_CADET_connecT (const struct GNUNET_CONFIGURATION_Handle *cfg)
1586 * @return Port handle. 1586 * @return Port handle.
1587 */ 1587 */
1588struct GNUNET_CADET_Port * 1588struct GNUNET_CADET_Port *
1589GNUNET_CADET_open_porT (struct GNUNET_CADET_Handle *h, 1589GNUNET_CADET_open_port (struct GNUNET_CADET_Handle *h,
1590 const struct GNUNET_HashCode *port, 1590 const struct GNUNET_HashCode *port,
1591 GNUNET_CADET_ConnectEventHandler connects, 1591 GNUNET_CADET_ConnectEventHandler connects,
1592 void * connects_cls, 1592 void * connects_cls,
@@ -1645,7 +1645,7 @@ GNUNET_CADET_open_porT (struct GNUNET_CADET_Handle *h,
1645 * @return Handle to the channel. 1645 * @return Handle to the channel.
1646 */ 1646 */
1647struct GNUNET_CADET_Channel * 1647struct GNUNET_CADET_Channel *
1648GNUNET_CADET_channel_creatE (struct GNUNET_CADET_Handle *h, 1648GNUNET_CADET_channel_create (struct GNUNET_CADET_Handle *h,
1649 void *channel_cls, 1649 void *channel_cls,
1650 const struct GNUNET_PeerIdentity *destination, 1650 const struct GNUNET_PeerIdentity *destination,
1651 const struct GNUNET_HashCode *port, 1651 const struct GNUNET_HashCode *port,