aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-06-22 15:15:58 +0000
committerChristian Grothoff <christian@grothoff.org>2010-06-22 15:15:58 +0000
commited6d5356ddf784c8a8ba2fb19c51a25bc2d709c9 (patch)
treeb80099c569db44f33dd189cf7d7ea934781252d7 /src
parent739ac84730e1d5f1b5affdeaedec11a986d2faa6 (diff)
downloadgnunet-ed6d5356ddf784c8a8ba2fb19c51a25bc2d709c9.tar.gz
gnunet-ed6d5356ddf784c8a8ba2fb19c51a25bc2d709c9.zip
dos2unix
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_connection_lib.h708
1 files changed, 354 insertions, 354 deletions
diff --git a/src/include/gnunet_connection_lib.h b/src/include/gnunet_connection_lib.h
index 1230c10c8..8bca5baa6 100644
--- a/src/include/gnunet_connection_lib.h
+++ b/src/include/gnunet_connection_lib.h
@@ -1,160 +1,160 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2009 Christian Grothoff (and other contributing authors) 3 (C) 2009 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 2, or (at your 7 by the Free Software Foundation; either version 2, or (at your
8 option) any later version. 8 option) any later version.
9 9
10 GNUnet is distributed in the hope that it will be useful, but 10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details. 13 General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the 16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21/** 21/**
22 * @file include/gnunet_connection_lib.h 22 * @file include/gnunet_connection_lib.h
23 * @brief basic, low-level TCP networking interface 23 * @brief basic, low-level TCP networking interface
24 * @author Christian Grothoff 24 * @author Christian Grothoff
25 */ 25 */
26#ifndef GNUNET_CONNECTION_LIB_H 26#ifndef GNUNET_CONNECTION_LIB_H
27#define GNUNET_CONNECTION_LIB_H 27#define GNUNET_CONNECTION_LIB_H
28 28
29#ifdef __cplusplus 29#ifdef __cplusplus
30extern "C" 30extern "C"
31{ 31{
32#if 0 /* keep Emacsens' auto-indent happy */ 32#if 0 /* keep Emacsens' auto-indent happy */
33} 33}
34#endif 34#endif
35#endif 35#endif
36 36
37#include "gnunet_network_lib.h" 37#include "gnunet_network_lib.h"
38#include "gnunet_scheduler_lib.h" 38#include "gnunet_scheduler_lib.h"
39#include "gnunet_time_lib.h" 39#include "gnunet_time_lib.h"
40 40
41/** 41/**
42 * Timeout we use on TCP connect before trying another 42 * Timeout we use on TCP connect before trying another
43 * result from the DNS resolver. Actual value used 43 * result from the DNS resolver. Actual value used
44 * is this value divided by the number of address families. 44 * is this value divided by the number of address families.
45 * Default is 5s. 45 * Default is 5s.
46 */ 46 */
47#define GNUNET_CONNECTION_CONNECT_RETRY_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5) 47#define GNUNET_CONNECTION_CONNECT_RETRY_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
48 48
49/** 49/**
50 * @brief handle for a network connection 50 * @brief handle for a network connection
51 */ 51 */
52struct GNUNET_CONNECTION_Handle; 52struct GNUNET_CONNECTION_Handle;
53 53
54 54
55/** 55/**
56 * Function to call for access control checks. 56 * Function to call for access control checks.
57 * 57 *
58 * @param cls closure 58 * @param cls closure
59 * @param addr address 59 * @param addr address
60 * @param addrlen length of address 60 * @param addrlen length of address
61 * @return GNUNET_YES to allow, GNUNET_NO to deny, GNUNET_SYSERR 61 * @return GNUNET_YES to allow, GNUNET_NO to deny, GNUNET_SYSERR
62 * for unknown address family (will be denied). 62 * for unknown address family (will be denied).
63 */ 63 */
64typedef int (*GNUNET_CONNECTION_AccessCheck) (void *cls, 64typedef int (*GNUNET_CONNECTION_AccessCheck) (void *cls,
65 const struct sockaddr * addr, 65 const struct sockaddr * addr,
66 socklen_t addrlen); 66 socklen_t addrlen);
67 67
68 68
69/** 69/**
70 * Callback function for data received from the network. Note that 70 * Callback function for data received from the network. Note that
71 * both "available" and "err" would be 0 if the read simply timed out. 71 * both "available" and "err" would be 0 if the read simply timed out.
72 * 72 *
73 * @param cls closure 73 * @param cls closure
74 * @param buf pointer to received data 74 * @param buf pointer to received data
75 * @param available number of bytes availabe in "buf", 75 * @param available number of bytes availabe in "buf",
76 * possibly 0 (on errors) 76 * possibly 0 (on errors)
77 * @param addr address of the sender 77 * @param addr address of the sender
78 * @param addrlen size of addr 78 * @param addrlen size of addr
79 * @param errCode value of errno (on errors receiving) 79 * @param errCode value of errno (on errors receiving)
80 */ 80 */
81typedef void (*GNUNET_CONNECTION_Receiver) (void *cls, 81typedef void (*GNUNET_CONNECTION_Receiver) (void *cls,
82 const void *buf, 82 const void *buf,
83 size_t available, 83 size_t available,
84 const struct sockaddr * addr, 84 const struct sockaddr * addr,
85 socklen_t addrlen, int errCode); 85 socklen_t addrlen, int errCode);
86 86
87/** 87/**
88 * Set the persist option on this connection handle. Indicates 88 * Set the persist option on this connection handle. Indicates
89 * that the underlying socket or fd should never really be closed. 89 * that the underlying socket or fd should never really be closed.
90 * Used for indicating process death. 90 * Used for indicating process death.
91 * 91 *
92 * @param sock the connection to set persistent 92 * @param sock the connection to set persistent
93 */ 93 */
94void 94void
95GNUNET_CONNECTION_persist_(struct GNUNET_CONNECTION_Handle *sock); 95GNUNET_CONNECTION_persist_(struct GNUNET_CONNECTION_Handle *sock);
96 96
97/** 97/**
98 * Create a socket handle by boxing an existing OS socket. The OS 98 * Create a socket handle by boxing an existing OS socket. The OS
99 * socket should henceforth be no longer used directly. 99 * socket should henceforth be no longer used directly.
100 * GNUNET_socket_destroy will close it. 100 * GNUNET_socket_destroy will close it.
101 * 101 *
102 * @param sched scheduler to use 102 * @param sched scheduler to use
103 * @param osSocket existing socket to box 103 * @param osSocket existing socket to box
104 * @param maxbuf maximum write buffer size for the socket (use 104 * @param maxbuf maximum write buffer size for the socket (use
105 * 0 for sockets that need no write buffers, such as listen sockets) 105 * 0 for sockets that need no write buffers, such as listen sockets)
106 * @return the boxed socket handle 106 * @return the boxed socket handle
107 */ 107 */
108struct GNUNET_CONNECTION_Handle 108struct GNUNET_CONNECTION_Handle
109 *GNUNET_CONNECTION_create_from_existing (struct 109 *GNUNET_CONNECTION_create_from_existing (struct
110 GNUNET_SCHEDULER_Handle 110 GNUNET_SCHEDULER_Handle
111 *sched, 111 *sched,
112 struct 112 struct
113 GNUNET_NETWORK_Handle 113 GNUNET_NETWORK_Handle
114 *osSocket, size_t maxbuf); 114 *osSocket, size_t maxbuf);
115 115
116 116
117/** 117/**
118 * Create a socket handle by accepting on a listen socket. This 118 * Create a socket handle by accepting on a listen socket. This
119 * function may block if the listen socket has no connection ready. 119 * function may block if the listen socket has no connection ready.
120 * 120 *
121 * @param sched scheduler to use 121 * @param sched scheduler to use
122 * @param access function to use to check if access is allowed 122 * @param access function to use to check if access is allowed
123 * @param access_cls closure for access 123 * @param access_cls closure for access
124 * @param lsock listen socket 124 * @param lsock listen socket
125 * @param maxbuf maximum write buffer size for the socket (use 125 * @param maxbuf maximum write buffer size for the socket (use
126 * 0 for sockets that need no write buffers, such as listen sockets) 126 * 0 for sockets that need no write buffers, such as listen sockets)
127 * @return the socket handle, NULL on error (for example, access refused) 127 * @return the socket handle, NULL on error (for example, access refused)
128 */ 128 */
129struct GNUNET_CONNECTION_Handle 129struct GNUNET_CONNECTION_Handle
130 *GNUNET_CONNECTION_create_from_accept (struct 130 *GNUNET_CONNECTION_create_from_accept (struct
131 GNUNET_SCHEDULER_Handle 131 GNUNET_SCHEDULER_Handle
132 *sched, 132 *sched,
133 GNUNET_CONNECTION_AccessCheck 133 GNUNET_CONNECTION_AccessCheck
134 access, void *access_cls, 134 access, void *access_cls,
135 struct 135 struct
136 GNUNET_NETWORK_Handle 136 GNUNET_NETWORK_Handle
137 *lsock, size_t maxbuf); 137 *lsock, size_t maxbuf);
138 138
139 139
140/** 140/**
141 * Create a socket handle by (asynchronously) connecting to a host. 141 * Create a socket handle by (asynchronously) connecting to a host.
142 * This function returns immediately, even if the connection has not 142 * This function returns immediately, even if the connection has not
143 * yet been established. This function only creates TCP connections. 143 * yet been established. This function only creates TCP connections.
144 * 144 *
145 * @param sched scheduler to use 145 * @param sched scheduler to use
146 * @param cfg configuration to use 146 * @param cfg configuration to use
147 * @param hostname name of the host to connect to 147 * @param hostname name of the host to connect to
148 * @param port port to connect to 148 * @param port port to connect to
149 * @param maxbuf maximum write buffer size for the socket (use 149 * @param maxbuf maximum write buffer size for the socket (use
150 * 0 for sockets that need no write buffers, such as listen sockets) 150 * 0 for sockets that need no write buffers, such as listen sockets)
151 * @return the socket handle 151 * @return the socket handle
152 */ 152 */
153struct GNUNET_CONNECTION_Handle 153struct GNUNET_CONNECTION_Handle
154 *GNUNET_CONNECTION_create_from_connect (struct GNUNET_SCHEDULER_Handle *sched, 154 *GNUNET_CONNECTION_create_from_connect (struct GNUNET_SCHEDULER_Handle *sched,
155 const struct GNUNET_CONFIGURATION_Handle *cfg, 155 const struct GNUNET_CONFIGURATION_Handle *cfg,
156 const char *hostname, 156 const char *hostname,
157 uint16_t port, 157 uint16_t port,
158 size_t maxbuf); 158 size_t maxbuf);
159 159
160 160
@@ -177,201 +177,201 @@ GNUNET_CONNECTION_create_from_connect_to_unixpath (struct GNUNET_SCHEDULER_Handl
177 const char *unixpath, 177 const char *unixpath,
178 size_t maxbuf); 178 size_t maxbuf);
179 179
180 180
181 181
182 182
183/** 183/**
184 * Create a socket handle by (asynchronously) connecting to a host. 184 * Create a socket handle by (asynchronously) connecting to a host.
185 * This function returns immediately, even if the connection has not 185 * This function returns immediately, even if the connection has not
186 * yet been established. This function only creates TCP connections. 186 * yet been established. This function only creates TCP connections.
187 * 187 *
188 * @param sched scheduler to use 188 * @param sched scheduler to use
189 * @param af_family address family to use 189 * @param af_family address family to use
190 * @param serv_addr server address 190 * @param serv_addr server address
191 * @param addrlen length of server address 191 * @param addrlen length of server address
192 * @param maxbuf maximum write buffer size for the socket (use 192 * @param maxbuf maximum write buffer size for the socket (use
193 * 0 for sockets that need no write buffers, such as listen sockets) 193 * 0 for sockets that need no write buffers, such as listen sockets)
194 * @return the socket handle 194 * @return the socket handle
195 */ 195 */
196struct GNUNET_CONNECTION_Handle 196struct GNUNET_CONNECTION_Handle
197 *GNUNET_CONNECTION_create_from_sockaddr (struct 197 *GNUNET_CONNECTION_create_from_sockaddr (struct
198 GNUNET_SCHEDULER_Handle 198 GNUNET_SCHEDULER_Handle
199 *sched, int af_family, 199 *sched, int af_family,
200 const struct sockaddr 200 const struct sockaddr
201 *serv_addr, 201 *serv_addr,
202 socklen_t addrlen, 202 socklen_t addrlen,
203 size_t maxbuf); 203 size_t maxbuf);
204 204
205/** 205/**
206 * Check if socket is valid (no fatal errors have happened so far). 206 * Check if socket is valid (no fatal errors have happened so far).
207 * Note that a socket that is still trying to connect is considered 207 * Note that a socket that is still trying to connect is considered
208 * valid. 208 * valid.
209 * 209 *
210 * @param sock socket to check 210 * @param sock socket to check
211 * @return GNUNET_YES if valid, GNUNET_NO otherwise 211 * @return GNUNET_YES if valid, GNUNET_NO otherwise
212 */ 212 */
213int GNUNET_CONNECTION_check (struct GNUNET_CONNECTION_Handle 213int GNUNET_CONNECTION_check (struct GNUNET_CONNECTION_Handle
214 *sock); 214 *sock);
215 215
216 216
217/** 217/**
218 * Obtain the network address of the other party. 218 * Obtain the network address of the other party.
219 * 219 *
220 * @param sock the client to get the address for 220 * @param sock the client to get the address for
221 * @param addr where to store the address 221 * @param addr where to store the address
222 * @param addrlen where to store the length of the address 222 * @param addrlen where to store the length of the address
223 * @return GNUNET_OK on success 223 * @return GNUNET_OK on success
224 */ 224 */
225int GNUNET_CONNECTION_get_address (struct 225int GNUNET_CONNECTION_get_address (struct
226 GNUNET_CONNECTION_Handle 226 GNUNET_CONNECTION_Handle
227 *sock, void **addr, 227 *sock, void **addr,
228 size_t * addrlen); 228 size_t * addrlen);
229 229
230 230
231/** 231/**
232 * Close the socket and free associated resources. Pending 232 * Close the socket and free associated resources. Pending
233 * transmissions may be completed or dropped depending on the 233 * transmissions may be completed or dropped depending on the
234 * arguments. If a receive call is pending and should 234 * arguments. If a receive call is pending and should
235 * NOT be completed, 'GNUNET_CONNECTION_receive_cancel' 235 * NOT be completed, 'GNUNET_CONNECTION_receive_cancel'
236 * should be called explicitly first. 236 * should be called explicitly first.
237 * 237 *
238 * @param sock socket to destroy 238 * @param sock socket to destroy
239 * @param finish_pending_write should pending writes be completed or aborted? 239 * @param finish_pending_write should pending writes be completed or aborted?
240 * (this applies to transmissions where the data has already been 240 * (this applies to transmissions where the data has already been
241 * read from the application; all other transmissions should be 241 * read from the application; all other transmissions should be
242 * aborted using 'GNUNET_CONNECTION_notify_transmit_ready_cancel'). 242 * aborted using 'GNUNET_CONNECTION_notify_transmit_ready_cancel').
243 */ 243 */
244void 244void
245GNUNET_CONNECTION_destroy (struct GNUNET_CONNECTION_Handle *sock, 245GNUNET_CONNECTION_destroy (struct GNUNET_CONNECTION_Handle *sock,
246 int finish_pending_write); 246 int finish_pending_write);
247 247
248 248
249/** 249/**
250 * Receive data from the given socket. Note that this function will 250 * Receive data from the given socket. Note that this function will
251 * call "receiver" asynchronously using the scheduler. It will 251 * call "receiver" asynchronously using the scheduler. It will
252 * "immediately" return. Note that there MUST only be one active 252 * "immediately" return. Note that there MUST only be one active
253 * receive call per socket at any given point in time (so do not 253 * receive call per socket at any given point in time (so do not
254 * call receive again until the receiver callback has been invoked). 254 * call receive again until the receiver callback has been invoked).
255 * 255 *
256 * @param sock socket handle 256 * @param sock socket handle
257 * @param max maximum number of bytes to read 257 * @param max maximum number of bytes to read
258 * @param timeout maximum amount of time to wait 258 * @param timeout maximum amount of time to wait
259 * @param receiver function to call with received data 259 * @param receiver function to call with received data
260 * @param receiver_cls closure for receiver 260 * @param receiver_cls closure for receiver
261 */ 261 */
262void 262void
263GNUNET_CONNECTION_receive (struct GNUNET_CONNECTION_Handle 263GNUNET_CONNECTION_receive (struct GNUNET_CONNECTION_Handle
264 *sock, size_t max, 264 *sock, size_t max,
265 struct GNUNET_TIME_Relative timeout, 265 struct GNUNET_TIME_Relative timeout,
266 GNUNET_CONNECTION_Receiver receiver, 266 GNUNET_CONNECTION_Receiver receiver,
267 void *receiver_cls); 267 void *receiver_cls);
268 268
269 269
270/** 270/**
271 * Cancel receive job on the given socket. Note that the 271 * Cancel receive job on the given socket. Note that the
272 * receiver callback must not have been called yet in order 272 * receiver callback must not have been called yet in order
273 * for the cancellation to be valid. 273 * for the cancellation to be valid.
274 * 274 *
275 * @param sock socket handle 275 * @param sock socket handle
276 * @return closure of the original receiver callback closure 276 * @return closure of the original receiver callback closure
277 */ 277 */
278void *GNUNET_CONNECTION_receive_cancel (struct 278void *GNUNET_CONNECTION_receive_cancel (struct
279 GNUNET_CONNECTION_Handle 279 GNUNET_CONNECTION_Handle
280 *sock); 280 *sock);
281 281
282 282
283/** 283/**
284 * Function called to notify a client about the socket 284 * Function called to notify a client about the socket
285 * begin ready to queue more data. "buf" will be 285 * begin ready to queue more data. "buf" will be
286 * NULL and "size" zero if the socket was closed for 286 * NULL and "size" zero if the socket was closed for
287 * writing in the meantime. 287 * writing in the meantime.
288 * 288 *
289 * @param cls closure 289 * @param cls closure
290 * @param size number of bytes available in buf 290 * @param size number of bytes available in buf
291 * @param buf where the callee should write the message 291 * @param buf where the callee should write the message
292 * @return number of bytes written to buf 292 * @return number of bytes written to buf
293 */ 293 */
294typedef size_t (*GNUNET_CONNECTION_TransmitReadyNotify) (void *cls, 294typedef size_t (*GNUNET_CONNECTION_TransmitReadyNotify) (void *cls,
295 size_t size, void *buf); 295 size_t size, void *buf);
296 296
297 297
298/** 298/**
299 * Opaque handle that can be used to cancel 299 * Opaque handle that can be used to cancel
300 * a transmit-ready notification. 300 * a transmit-ready notification.
301 */ 301 */
302struct GNUNET_CONNECTION_TransmitHandle; 302struct GNUNET_CONNECTION_TransmitHandle;
303 303
304/** 304/**
305 * Ask the socket to call us once the specified number of bytes 305 * Ask the socket to call us once the specified number of bytes
306 * are free in the transmission buffer. May call the notify 306 * are free in the transmission buffer. May call the notify
307 * method immediately if enough space is available. Note that 307 * method immediately if enough space is available. Note that
308 * this function will abort if "size" is greater than 308 * this function will abort if "size" is greater than
309 * "maxbuf" (as specified when the socket handle was created). 309 * "maxbuf" (as specified when the socket handle was created).
310 * 310 *
311 * Note that "notify" will be called either when enough 311 * Note that "notify" will be called either when enough
312 * buffer space is available OR when the socket is destroyed. 312 * buffer space is available OR when the socket is destroyed.
313 * The size parameter given to notify is guaranteed to be 313 * The size parameter given to notify is guaranteed to be
314 * larger or equal to size if the buffer is ready, or zero 314 * larger or equal to size if the buffer is ready, or zero
315 * if the socket was destroyed (or at least closed for 315 * if the socket was destroyed (or at least closed for
316 * writing). Finally, any time before 'notify' is called, a 316 * writing). Finally, any time before 'notify' is called, a
317 * client may call "notify_transmit_ready_cancel" to cancel 317 * client may call "notify_transmit_ready_cancel" to cancel
318 * the transmission request. 318 * the transmission request.
319 * 319 *
320 * Only one transmission request can be scheduled at the same 320 * Only one transmission request can be scheduled at the same
321 * time. Notify will be run with the same scheduler priority 321 * time. Notify will be run with the same scheduler priority
322 * as that of the caller. 322 * as that of the caller.
323 * 323 *
324 * @param sock socket 324 * @param sock socket
325 * @param size number of bytes to send 325 * @param size number of bytes to send
326 * @param timeout after how long should we give up (and call 326 * @param timeout after how long should we give up (and call
327 * notify with buf NULL and size 0)? 327 * notify with buf NULL and size 0)?
328 * @param notify function to call when buffer space is available 328 * @param notify function to call when buffer space is available
329 * @param notify_cls closure for notify 329 * @param notify_cls closure for notify
330 * @return non-NULL if the notify callback was queued, 330 * @return non-NULL if the notify callback was queued,
331 * NULL if we are already going to notify someone else (busy) 331 * NULL if we are already going to notify someone else (busy)
332 */ 332 */
333struct GNUNET_CONNECTION_TransmitHandle 333struct GNUNET_CONNECTION_TransmitHandle
334 *GNUNET_CONNECTION_notify_transmit_ready (struct 334 *GNUNET_CONNECTION_notify_transmit_ready (struct
335 GNUNET_CONNECTION_Handle 335 GNUNET_CONNECTION_Handle
336 *sock, size_t size, 336 *sock, size_t size,
337 struct 337 struct
338 GNUNET_TIME_Relative 338 GNUNET_TIME_Relative
339 timeout, 339 timeout,
340 GNUNET_CONNECTION_TransmitReadyNotify 340 GNUNET_CONNECTION_TransmitReadyNotify
341 notify, void *notify_cls); 341 notify, void *notify_cls);
342 342
343 343
344/** 344/**
345 * Cancel the specified transmission-ready 345 * Cancel the specified transmission-ready
346 * notification. 346 * notification.
347 * 347 *
348 * @param h handle for notification to cancel 348 * @param h handle for notification to cancel
349 */ 349 */
350void 350void
351GNUNET_CONNECTION_notify_transmit_ready_cancel (struct 351GNUNET_CONNECTION_notify_transmit_ready_cancel (struct
352 GNUNET_CONNECTION_TransmitHandle 352 GNUNET_CONNECTION_TransmitHandle
353 *h); 353 *h);
354 354
355 355
356/** 356/**
357 * Configure this connection to ignore shutdown signals. 357 * Configure this connection to ignore shutdown signals.
358 * 358 *
359 * @param sock socket handle 359 * @param sock socket handle
360 * @param do_ignore GNUNET_YES to ignore, GNUNET_NO to restore default 360 * @param do_ignore GNUNET_YES to ignore, GNUNET_NO to restore default
361 */ 361 */
362void 362void
363GNUNET_CONNECTION_ignore_shutdown (struct GNUNET_CONNECTION_Handle *sock, 363GNUNET_CONNECTION_ignore_shutdown (struct GNUNET_CONNECTION_Handle *sock,
364 int do_ignore); 364 int do_ignore);
365 365
366 366
367#if 0 /* keep Emacsens' auto-indent happy */ 367#if 0 /* keep Emacsens' auto-indent happy */
368{ 368{
369#endif 369#endif
370#ifdef __cplusplus 370#ifdef __cplusplus
371} 371}
372#endif 372#endif
373 373
374 374
375/* ifndef GNUNET_CONNECTION_LIB_H */ 375/* ifndef GNUNET_CONNECTION_LIB_H */
376#endif 376#endif
377/* end of gnunet_connection_lib.h */ 377/* end of gnunet_connection_lib.h */