aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2015-07-15 11:45:14 +0000
committerBart Polot <bart@net.in.tum.de>2015-07-15 11:45:14 +0000
commit84d1c6cc45f37aa12b058fa22a28e1787cf742b9 (patch)
treeddeab59d58ed26be1efa14656ea897f97c691ab5 /src
parent7d0c18e4ff5cb21baa7ba3d0dc917e4d18047512 (diff)
downloadgnunet-84d1c6cc45f37aa12b058fa22a28e1787cf742b9.tar.gz
gnunet-84d1c6cc45f37aa12b058fa22a28e1787cf742b9.zip
- doc
Diffstat (limited to 'src')
-rw-r--r--src/cadet/gnunet-service-cadet_tunnel.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/cadet/gnunet-service-cadet_tunnel.h b/src/cadet/gnunet-service-cadet_tunnel.h
index c7a795129..8b87aaa4c 100644
--- a/src/cadet/gnunet-service-cadet_tunnel.h
+++ b/src/cadet/gnunet-service-cadet_tunnel.h
@@ -90,10 +90,19 @@ enum CadetTunnelEState
90 CADET_TUNNEL_KEY_SENT, 90 CADET_TUNNEL_KEY_SENT,
91 91
92 /** 92 /**
93 * New ephemeral key and ping sent, waiting for pong. 93 * In OTR: New ephemeral key and ping sent, waiting for pong.
94 *
94 * This means that we DO have the peer's ephemeral key, otherwise the 95 * This means that we DO have the peer's ephemeral key, otherwise the
95 * state would be KEY_SENT. We DO NOT have a valid session key (either no 96 * state would be KEY_SENT. We DO NOT have a valid session key (either no
96 * previous key or previous key expired). 97 * previous key or previous key expired).
98 *
99 *
100 * In Axolotl: Key sent and received but no deciphered traffic yet.
101 *
102 * This means that we can send traffic (otherwise we would never complete
103 * the handshake), but we don't have complete confirmation. Since the first
104 * traffic MUST be a complete channel creation 3-way handshake, no payload
105 * will be sent before confirmation.
97 */ 106 */
98 CADET_TUNNEL_KEY_PING, 107 CADET_TUNNEL_KEY_PING,
99 108