aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_server_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-08-29 18:34:03 +0000
committerChristian Grothoff <christian@grothoff.org>2009-08-29 18:34:03 +0000
commitaca96d397a1c5213236f0183d7b74e2e38906181 (patch)
tree062b827acb08abe050c0ac2f7c7f08a9b9a7d1ea /src/include/gnunet_server_lib.h
parenteb0874673e122ddd822af3f4a9f9090c6104cd2a (diff)
downloadgnunet-aca96d397a1c5213236f0183d7b74e2e38906181.tar.gz
gnunet-aca96d397a1c5213236f0183d7b74e2e38906181.zip
fixing remaining network-connection naming confusion in API
Diffstat (limited to 'src/include/gnunet_server_lib.h')
-rw-r--r--src/include/gnunet_server_lib.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/gnunet_server_lib.h b/src/include/gnunet_server_lib.h
index bed5786ab..632833035 100644
--- a/src/include/gnunet_server_lib.h
+++ b/src/include/gnunet_server_lib.h
@@ -127,7 +127,7 @@ struct GNUNET_SERVER_MessageHandler
127struct GNUNET_SERVER_Handle *GNUNET_SERVER_create (struct 127struct GNUNET_SERVER_Handle *GNUNET_SERVER_create (struct
128 GNUNET_SCHEDULER_Handle 128 GNUNET_SCHEDULER_Handle
129 *sched, 129 *sched,
130 GNUNET_NETWORK_AccessCheck 130 GNUNET_CONNECTION_AccessCheck
131 access, void *access_cls, 131 access, void *access_cls,
132 const struct sockaddr 132 const struct sockaddr
133 *serverAddr, 133 *serverAddr,
@@ -178,11 +178,11 @@ GNUNET_SERVER_add_handlers (struct GNUNET_SERVER_Handle *server,
178 * GNUNET_CONNECTION_notify_transmit_ready_cancel. 178 * GNUNET_CONNECTION_notify_transmit_ready_cancel.
179 * NULL if we are already going to notify someone else (busy) 179 * NULL if we are already going to notify someone else (busy)
180 */ 180 */
181struct GNUNET_NETWORK_TransmitHandle 181struct GNUNET_CONNECTION_TransmitHandle
182 *GNUNET_SERVER_notify_transmit_ready (struct GNUNET_SERVER_Client *client, 182 *GNUNET_SERVER_notify_transmit_ready (struct GNUNET_SERVER_Client *client,
183 size_t size, 183 size_t size,
184 struct GNUNET_TIME_Relative timeout, 184 struct GNUNET_TIME_Relative timeout,
185 GNUNET_NETWORK_TransmitReadyNotify 185 GNUNET_CONNECTION_TransmitReadyNotify
186 callback, void *callback_cls); 186 callback, void *callback_cls);
187 187
188 188
@@ -261,7 +261,7 @@ typedef GNUNET_SCHEDULER_TaskIdentifier
261 (*GNUNET_SERVER_ReceiveCallback) (void *cls, 261 (*GNUNET_SERVER_ReceiveCallback) (void *cls,
262 size_t max, 262 size_t max,
263 struct GNUNET_TIME_Relative timeout, 263 struct GNUNET_TIME_Relative timeout,
264 GNUNET_NETWORK_Receiver 264 GNUNET_CONNECTION_Receiver
265 receiver, void *receiver_cls); 265 receiver, void *receiver_cls);
266 266
267 267
@@ -294,7 +294,7 @@ typedef void *(*GNUNET_SERVER_TransmitReadyCallback) (void *cls,
294 struct 294 struct
295 GNUNET_TIME_Relative 295 GNUNET_TIME_Relative
296 timeout, 296 timeout,
297 GNUNET_NETWORK_TransmitReadyNotify 297 GNUNET_CONNECTION_TransmitReadyNotify
298 notify, 298 notify,
299 void *notify_cls); 299 void *notify_cls);
300 300