aboutsummaryrefslogtreecommitdiff
path: root/src/dv/dv.h
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-06-24 11:03:11 +0000
committerNathan S. Evans <evans@in.tum.de>2010-06-24 11:03:11 +0000
commit76259023a5566d42229a4a284616fa8bac93b6a5 (patch)
tree1bfe89a5a7ed226ba05e41e7fcbb369b98eec2d9 /src/dv/dv.h
parent551e4e177a8623ac35ece7125ec07de5f9b9d294 (diff)
downloadgnunet-76259023a5566d42229a4a284616fa8bac93b6a5.tar.gz
gnunet-76259023a5566d42229a4a284616fa8bac93b6a5.zip
misc bugfixes, especially core dumps for dv test case
Diffstat (limited to 'src/dv/dv.h')
-rw-r--r--src/dv/dv.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/dv/dv.h b/src/dv/dv.h
index 28a56031e..7b32d7d14 100644
--- a/src/dv/dv.h
+++ b/src/dv/dv.h
@@ -31,7 +31,7 @@
31#define DEBUG_DV_GOSSIP GNUNET_NO 31#define DEBUG_DV_GOSSIP GNUNET_NO
32#define DEBUG_DV_GOSSIP_SEND GNUNET_NO 32#define DEBUG_DV_GOSSIP_SEND GNUNET_NO
33#define DEBUG_DV_GOSSIP_RECEIPT GNUNET_NO 33#define DEBUG_DV_GOSSIP_RECEIPT GNUNET_NO
34#define DEBUG_DV_MESSAGES GNUNET_YES 34#define DEBUG_DV_MESSAGES GNUNET_NO
35#define DEBUG_DV GNUNET_NO 35#define DEBUG_DV GNUNET_NO
36#define DEBUG_DV_PEER_NUMBERS GNUNET_NO 36#define DEBUG_DV_PEER_NUMBERS GNUNET_NO
37#define DEBUG_MESSAGE_DROP GNUNET_NO 37#define DEBUG_MESSAGE_DROP GNUNET_NO
@@ -156,11 +156,6 @@ struct GNUNET_DV_SendMessage
156 struct GNUNET_PeerIdentity target; 156 struct GNUNET_PeerIdentity target;
157 157
158 /** 158 /**
159 * The size of the msgbuf
160 */
161 uint32_t msgbuf_size;
162
163 /**
164 * Message priority 159 * Message priority
165 */ 160 */
166 uint32_t priority; 161 uint32_t priority;
@@ -273,4 +268,11 @@ GNUNET_DV_connect (struct GNUNET_SCHEDULER_Handle *sched,
273 GNUNET_DV_MessageReceivedHandler receive_handler, 268 GNUNET_DV_MessageReceivedHandler receive_handler,
274 void *receive_handler_cls); 269 void *receive_handler_cls);
275 270
271/**
272 * Disconnect from the DV service
273 *
274 * @param handle the current handle to the service to disconnect
275 */
276void GNUNET_DV_disconnect(struct GNUNET_DV_Handle *handle);
277
276#endif 278#endif