aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/cadet_protocol.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-20 10:08:07 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-20 10:08:07 +0100
commit7d96a8234bbd9d9a4dc431c52d92ebb604084c70 (patch)
treed2162b1006202ed154bf128293b9ec54fc38ac5e /src/cadet/cadet_protocol.h
parentaedd5919e802370061850486c96da72b25df7f22 (diff)
downloadgnunet-7d96a8234bbd9d9a4dc431c52d92ebb604084c70.tar.gz
gnunet-7d96a8234bbd9d9a4dc431c52d92ebb604084c70.zip
more work on channel/tunnel logic
Diffstat (limited to 'src/cadet/cadet_protocol.h')
-rw-r--r--src/cadet/cadet_protocol.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cadet/cadet_protocol.h b/src/cadet/cadet_protocol.h
index cf32e0d6d..f85ef17ae 100644
--- a/src/cadet/cadet_protocol.h
+++ b/src/cadet/cadet_protocol.h
@@ -337,7 +337,7 @@ struct GNUNET_CADET_ConnectionEncryptedAckMessage
337 /** 337 /**
338 * Maximum packet ID authorized. 338 * Maximum packet ID authorized.
339 */ 339 */
340 struct CadetEncryptedMessageIdentifier cemi; 340 struct CadetEncryptedMessageIdentifier cemi_max;
341 341
342 /** 342 /**
343 * ID of the connection. 343 * ID of the connection.
@@ -379,12 +379,13 @@ struct GNUNET_CADET_ChannelOpenMessage
379 379
380 380
381/** 381/**
382 * Message to manage a Channel (ACK, NACK, Destroy). 382 * Message to manage a Channel (CHANNEL_CREATE_ACK, CHANNEL_DESTROY).
383 */ 383 */
384struct GNUNET_CADET_ChannelManageMessage 384struct GNUNET_CADET_ChannelManageMessage
385{ 385{
386 /** 386 /**
387 * Type: #GNUNET_MESSAGE_TYPE_CADET_CHANNEL_{ACK|NACK|DESTROY} 387 * Type: #GNUNET_MESSAGE_TYPE_CADET_CHANNEL_CREATE_ACK or
388 * #GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY
388 */ 389 */
389 struct GNUNET_MessageHeader header; 390 struct GNUNET_MessageHeader header;
390 391