aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-11-05 14:23:25 +0000
committerBart Polot <bart@net.in.tum.de>2013-11-05 14:23:25 +0000
commit1f9e690c4b3274546b526cad85de1be13cb1c8eb (patch)
tree97aae1114154768bae6f93d83fe6b6b39abdfa7f /src
parentb0690f54501319479603edc362982c2f955e5184 (diff)
downloadgnunet-1f9e690c4b3274546b526cad85de1be13cb1c8eb.tar.gz
gnunet-1f9e690c4b3274546b526cad85de1be13cb1c8eb.zip
- header
Diffstat (limited to 'src')
-rw-r--r--src/mesh/gnunet-service-mesh_tunnel.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/mesh/gnunet-service-mesh_tunnel.h b/src/mesh/gnunet-service-mesh_tunnel.h
index 0cbdf1b13..42b18fe2e 100644
--- a/src/mesh/gnunet-service-mesh_tunnel.h
+++ b/src/mesh/gnunet-service-mesh_tunnel.h
@@ -61,6 +61,16 @@ enum MeshTunnel3State
61 MESH_TUNNEL3_WAITING, 61 MESH_TUNNEL3_WAITING,
62 62
63 /** 63 /**
64 * Ephemeral key sent, waiting for peer's key.
65 */
66 MESH_TUNNEL3_KEY_SENT,
67
68 /**
69 * Have peer's key, sent ping, waiting for pong.
70 */
71 MESH_TUNNEL3_PING_SENT,
72
73 /**
64 * Peer connected and ready to accept data 74 * Peer connected and ready to accept data
65 */ 75 */
66 MESH_TUNNEL3_READY, 76 MESH_TUNNEL3_READY,
@@ -68,7 +78,12 @@ enum MeshTunnel3State
68 /** 78 /**
69 * Peer connected previosly but not responding 79 * Peer connected previosly but not responding
70 */ 80 */
71 MESH_TUNNEL3_RECONNECTING 81 MESH_TUNNEL3_RECONNECTING,
82
83 /**
84 * New ephemeral key and ping sent, waiting for pong.
85 */
86 MESH_TUNNEL3_REKEY,
72}; 87};
73 88
74/** 89/**