aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_connection_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-02-18 14:05:44 +0000
committerChristian Grothoff <christian@grothoff.org>2015-02-18 14:05:44 +0000
commit2fc4f88977dd638ebc718c9374bb3fa56551171f (patch)
treee8648edb413e02bb34959946a580b98905852403 /src/include/gnunet_connection_lib.h
parent433e2295e3f7fbb3e61b54489b9ee392914f3bff (diff)
downloadgnunet-2fc4f88977dd638ebc718c9374bb3fa56551171f.tar.gz
gnunet-2fc4f88977dd638ebc718c9374bb3fa56551171f.zip
-doxygen
Diffstat (limited to 'src/include/gnunet_connection_lib.h')
-rw-r--r--src/include/gnunet_connection_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_connection_lib.h b/src/include/gnunet_connection_lib.h
index c37666e38..c4c76a7eb 100644
--- a/src/include/gnunet_connection_lib.h
+++ b/src/include/gnunet_connection_lib.h
@@ -161,14 +161,14 @@ GNUNET_CONNECTION_create_from_existing (struct GNUNET_NETWORK_Handle *osSocket);
161 * Create a connection handle by accepting on a listen socket. This 161 * Create a connection handle by accepting on a listen socket. This
162 * function may block if the listen socket has no connection ready. 162 * function may block if the listen socket has no connection ready.
163 * 163 *
164 * @param access function to use to check if access is allowed 164 * @param access_cb function to use to check if access is allowed
165 * @param access_cls closure for access 165 * @param access_cb_cls closure for @a access_cb
166 * @param lsock listen socket 166 * @param lsock listen socket
167 * @return the connection handle, NULL on error (for example, access refused) 167 * @return the connection handle, NULL on error (for example, access refused)
168 */ 168 */
169struct GNUNET_CONNECTION_Handle * 169struct GNUNET_CONNECTION_Handle *
170GNUNET_CONNECTION_create_from_accept (GNUNET_CONNECTION_AccessCheck access, 170GNUNET_CONNECTION_create_from_accept (GNUNET_CONNECTION_AccessCheck access_cb,
171 void *access_cls, 171 void *access_cb_cls,
172 struct GNUNET_NETWORK_Handle *lsock); 172 struct GNUNET_NETWORK_Handle *lsock);
173 173
174 174