aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesh/gnunet-service-mesh.c3
-rw-r--r--src/mesh/mesh.h3
-rw-r--r--src/mesh/test_mesh_small_multicast.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index da0af99b1..97f0f985b 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -40,8 +40,7 @@
40 * - add vs create? change vs. keep-alive? same msg or different ones? -- thinking... 40 * - add vs create? change vs. keep-alive? same msg or different ones? -- thinking...
41 * - speed requirement specification (change?) in mesh API -- API call 41 * - speed requirement specification (change?) in mesh API -- API call
42 * - add ping message 42 * - add ping message
43 * - add connection confirmation message 43 * - relay corking down to core
44 * - handle trnsmt_rdy return values
45 */ 44 */
46 45
47#include "platform.h" 46#include "platform.h"
diff --git a/src/mesh/mesh.h b/src/mesh/mesh.h
index e816e5ddc..0c54d72c9 100644
--- a/src/mesh/mesh.h
+++ b/src/mesh/mesh.h
@@ -107,7 +107,8 @@ struct GNUNET_MESH_ClientConnect
107 107
108/** 108/**
109 * Type for tunnel numbering. 109 * Type for tunnel numbering.
110 * - Local tunnel numbers are >= 0x80000000 110 * - Local tunnel numbers given by the service (incoming) are >= 0xB0000000
111 * - Local tunnel numbers given by the client (created) are >= 0x80000000
111 * - Global tunnel numbers are < 0x80000000 112 * - Global tunnel numbers are < 0x80000000
112 */ 113 */
113typedef uint32_t MESH_TunnelNumber; 114typedef uint32_t MESH_TunnelNumber;
diff --git a/src/mesh/test_mesh_small_multicast.c b/src/mesh/test_mesh_small_multicast.c
index bb76e0878..837942de6 100644
--- a/src/mesh/test_mesh_small_multicast.c
+++ b/src/mesh/test_mesh_small_multicast.c
@@ -371,7 +371,7 @@ ch (void *cls, const struct GNUNET_PeerIdentity *peer,
371 GNUNET_NO, 371 GNUNET_NO,
372 0, 372 0,
373 GNUNET_TIME_UNIT_FOREVER_REL, 373 GNUNET_TIME_UNIT_FOREVER_REL,
374 &d2->id, 374 NULL,
375 sizeof(struct GNUNET_MessageHeader), 375 sizeof(struct GNUNET_MessageHeader),
376 &tmt_rdy, 376 &tmt_rdy,
377 (void *) 1L); 377 (void *) 1L);