aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh_tunnel.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-11-14 16:57:03 +0000
committerBart Polot <bart@net.in.tum.de>2013-11-14 16:57:03 +0000
commit41c4af58154915dfc614d3c43cfa8d8919fcc987 (patch)
tree46da437e5968067680e2e8e57047ed38cb10cd63 /src/mesh/gnunet-service-mesh_tunnel.c
parent0d6e1036ad64d341651d113e3427323a157353d3 (diff)
downloadgnunet-41c4af58154915dfc614d3c43cfa8d8919fcc987.tar.gz
gnunet-41c4af58154915dfc614d3c43cfa8d8919fcc987.zip
- remove superfluous tunnel state
Diffstat (limited to 'src/mesh/gnunet-service-mesh_tunnel.c')
-rw-r--r--src/mesh/gnunet-service-mesh_tunnel.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesh/gnunet-service-mesh_tunnel.c b/src/mesh/gnunet-service-mesh_tunnel.c
index 4033da4ca..9b1397d95 100644
--- a/src/mesh/gnunet-service-mesh_tunnel.c
+++ b/src/mesh/gnunet-service-mesh_tunnel.c
@@ -246,8 +246,6 @@ GMT_state2s (enum MeshTunnel3State s)
246 return "MESH_TUNNEL3_WAITING"; 246 return "MESH_TUNNEL3_WAITING";
247 case MESH_TUNNEL3_KEY_SENT: 247 case MESH_TUNNEL3_KEY_SENT:
248 return "MESH_TUNNEL3_KEY_SENT"; 248 return "MESH_TUNNEL3_KEY_SENT";
249 case MESH_TUNNEL3_PING_SENT:
250 return "MESH_TUNNEL3_PING_SENT";
251 case MESH_TUNNEL3_READY: 249 case MESH_TUNNEL3_READY:
252 return "MESH_TUNNEL3_READY"; 250 return "MESH_TUNNEL3_READY";
253 case MESH_TUNNEL3_RECONNECTING: 251 case MESH_TUNNEL3_RECONNECTING:
@@ -1109,7 +1107,7 @@ handle_ephemeral (struct MeshTunnel3 *t,
1109 { 1107 {
1110 LOG (GNUNET_ERROR_TYPE_DEBUG, " our key was sent, send ping\n"); 1108 LOG (GNUNET_ERROR_TYPE_DEBUG, " our key was sent, send ping\n");
1111 send_ping (t); 1109 send_ping (t);
1112 t->state = MESH_TUNNEL3_PING_SENT; 1110 t->state = MESH_TUNNEL3_REKEY;
1113 } 1111 }
1114} 1112}
1115 1113