aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-01-15 16:47:48 +0000
committerChristian Grothoff <christian@grothoff.org>2010-01-15 16:47:48 +0000
commitce4aeaac8ee95b33948fa195a92fc8e83554cea8 (patch)
tree66315254fca477af2bfab189e4024033e7eaf00c /src/include
parent478aaaa68357c14a6b688c26889e5919931a7e49 (diff)
downloadgnunet-ce4aeaac8ee95b33948fa195a92fc8e83554cea8.tar.gz
gnunet-ce4aeaac8ee95b33948fa195a92fc8e83554cea8.zip
fix
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_server_lib.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/include/gnunet_server_lib.h b/src/include/gnunet_server_lib.h
index 455cb4684..ecfead5ab 100644
--- a/src/include/gnunet_server_lib.h
+++ b/src/include/gnunet_server_lib.h
@@ -114,9 +114,8 @@ struct GNUNET_SERVER_MessageHandler
114 * @param sched scheduler to use 114 * @param sched scheduler to use
115 * @param access function for access control 115 * @param access function for access control
116 * @param access_cls closure for access 116 * @param access_cls closure for access
117 * @param serverAddr address to listen on (including port), use NULL 117 * @param serverAddr address toes listen on (including port), NULL terminated array
118 * for internal server (no listening) 118 * @param socklen lengths of respective serverAddr
119 * @param socklen length of serverAddr
120 * @param maxbuf maximum write buffer size for accepted sockets 119 * @param maxbuf maximum write buffer size for accepted sockets
121 * @param idle_timeout after how long should we timeout idle connections? 120 * @param idle_timeout after how long should we timeout idle connections?
122 * @param require_found if YES, connections sending messages of unknown type 121 * @param require_found if YES, connections sending messages of unknown type
@@ -129,9 +128,8 @@ struct GNUNET_SERVER_Handle *GNUNET_SERVER_create (struct
129 *sched, 128 *sched,
130 GNUNET_CONNECTION_AccessCheck 129 GNUNET_CONNECTION_AccessCheck
131 access, void *access_cls, 130 access, void *access_cls,
132 const struct sockaddr 131 struct sockaddr *const*serverAddr,
133 *serverAddr, 132 const socklen_t *socklen,
134 socklen_t socklen,
135 size_t maxbuf, 133 size_t maxbuf,
136 struct GNUNET_TIME_Relative 134 struct GNUNET_TIME_Relative
137 idle_timeout, 135 idle_timeout,