aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/mesh_protocol_enc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesh/mesh_protocol_enc.h')
-rw-r--r--src/mesh/mesh_protocol_enc.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mesh/mesh_protocol_enc.h b/src/mesh/mesh_protocol_enc.h
index ebecb087d..9661a4fd3 100644
--- a/src/mesh/mesh_protocol_enc.h
+++ b/src/mesh/mesh_protocol_enc.h
@@ -242,6 +242,16 @@ struct GNUNET_MESH_ACK
242 * Maximum packet ID authorized. 242 * Maximum packet ID authorized.
243 */ 243 */
244 uint32_t ack GNUNET_PACKED; 244 uint32_t ack GNUNET_PACKED;
245
246 /**
247 * ID of the tunnel
248 */
249 struct GNUNET_HashCode tid;
250
251 /**
252 * ID of the connection
253 */
254 uint32_t cid GNUNET_PACKED;
245}; 255};
246 256
247 257
@@ -259,6 +269,16 @@ struct GNUNET_MESH_Poll
259 * Last packet sent. 269 * Last packet sent.
260 */ 270 */
261 uint32_t pid GNUNET_PACKED; 271 uint32_t pid GNUNET_PACKED;
272
273 /**
274 * ID of the tunnel
275 */
276 struct GNUNET_HashCode tid;
277
278 /**
279 * ID of the connection
280 */
281 uint32_t cid GNUNET_PACKED;
262}; 282};
263 283
264 284