aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_connection_lib.h
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-05-06 09:55:53 +0000
committerNathan S. Evans <evans@in.tum.de>2010-05-06 09:55:53 +0000
commit998cb5efab59bfc5cdf9b324273b367fa8278c0b (patch)
tree1f8770e93fc6f2c1c08796d20867993937f63327 /src/include/gnunet_connection_lib.h
parent1948cedcb5e7c5017dcd18ef087f0f7e5aa5f27f (diff)
downloadgnunet-998cb5efab59bfc5cdf9b324273b367fa8278c0b.tar.gz
gnunet-998cb5efab59bfc5cdf9b324273b367fa8278c0b.zip
changes required for arm fix
Diffstat (limited to 'src/include/gnunet_connection_lib.h')
-rw-r--r--src/include/gnunet_connection_lib.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/include/gnunet_connection_lib.h b/src/include/gnunet_connection_lib.h
index 0f6ae21e3..9701eb149 100644
--- a/src/include/gnunet_connection_lib.h
+++ b/src/include/gnunet_connection_lib.h
@@ -84,6 +84,15 @@ typedef void (*GNUNET_CONNECTION_Receiver) (void *cls,
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/**
88 * Set the persist option on this connection handle. Indicates
89 * that the underlying socket or fd should never really be closed.
90 * Used for indicating process death.
91 *
92 * @param sock the connection to set persistent
93 */
94void
95GNUNET_CONNECTION_persist_(struct GNUNET_CONNECTION_Handle *sock);
87 96
88/** 97/**
89 * 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