aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-11-15 13:56:40 +0100
committerChristian Grothoff <christian@grothoff.org>2018-11-15 13:56:40 +0100
commit478a4c062b7d12b5d75d10667aa7739bd15b6405 (patch)
tree2fb3c5474a510d242fadeae772114343313b1f5d /src/include
parentad1244d958b76cb249028c7ad87ff84df49293ff (diff)
downloadgnunet-478a4c062b7d12b5d75d10667aa7739bd15b6405.tar.gz
gnunet-478a4c062b7d12b5d75d10667aa7739bd15b6405.zip
get gnunet-service-tng to build
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_transport_core_service.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gnunet_transport_core_service.h b/src/include/gnunet_transport_core_service.h
index 5fbfcee21..b52dbe5f8 100644
--- a/src/include/gnunet_transport_core_service.h
+++ b/src/include/gnunet_transport_core_service.h
@@ -66,7 +66,7 @@ struct GNUNET_TRANSPORT_CoreHandle;
66 * @return closure to use in MQ handlers 66 * @return closure to use in MQ handlers
67 */ 67 */
68typedef void * 68typedef void *
69(*GNUNET_TRANSPORT_NotifyConnecT) (void *cls, 69(*GNUNET_TRANSPORT_NotifyConnect) (void *cls,
70 const struct GNUNET_PeerIdentity *peer, 70 const struct GNUNET_PeerIdentity *peer,
71 struct GNUNET_MQ_Handle *mq); 71 struct GNUNET_MQ_Handle *mq);
72 72
@@ -83,7 +83,7 @@ typedef void *
83 * connect notification callback 83 * connect notification callback
84 */ 84 */
85typedef void 85typedef void
86(*GNUNET_TRANSPORT_NotifyDisconnecT) (void *cls, 86(*GNUNET_TRANSPORT_NotifyDisconnect) (void *cls,
87 const struct GNUNET_PeerIdentity *peer, 87 const struct GNUNET_PeerIdentity *peer,
88 void *handler_cls); 88 void *handler_cls);
89 89
@@ -105,7 +105,7 @@ typedef void
105 * connect notification callback 105 * connect notification callback
106 */ 106 */
107typedef void 107typedef void
108(*GNUNET_TRANSPORT_NotifyExcessBandwidtH)(void *cls, 108(*GNUNET_TRANSPORT_NotifyExcessBandwidth)(void *cls,
109 const struct GNUNET_PeerIdentity *neighbour, 109 const struct GNUNET_PeerIdentity *neighbour,
110 void *handlers_cls); 110 void *handlers_cls);
111 111
@@ -133,9 +133,9 @@ GNUNET_TRANSPORT_core_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
133 const struct GNUNET_PeerIdentity *self, 133 const struct GNUNET_PeerIdentity *self,
134 const struct GNUNET_MQ_MessageHandler *handlers, 134 const struct GNUNET_MQ_MessageHandler *handlers,
135 void *cls, 135 void *cls,
136 GNUNET_TRANSPORT_NotifyConnecT nc, 136 GNUNET_TRANSPORT_NotifyConnect nc,
137 GNUNET_TRANSPORT_NotifyDisconnecT nd, 137 GNUNET_TRANSPORT_NotifyDisconnect nd,
138 GNUNET_TRANSPORT_NotifyExcessBandwidtH neb); 138 GNUNET_TRANSPORT_NotifyExcessBandwidth neb);
139 139
140 140
141/** 141/**