aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-11-28 01:23:00 +0000
committerBart Polot <bart@net.in.tum.de>2013-11-28 01:23:00 +0000
commit51eb2b885c15c707052a306e0205dd80c22f5f4f (patch)
treea51b9faa223b76b9d6e90ae43cf0b91e17a83af3 /src
parent49914c358082e448250656922f74cc1857b40543 (diff)
downloadgnunet-51eb2b885c15c707052a306e0205dd80c22f5f4f.tar.gz
gnunet-51eb2b885c15c707052a306e0205dd80c22f5f4f.zip
- typos, indent
Diffstat (limited to 'src')
-rw-r--r--src/mesh/gnunet-service-mesh_connection.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesh/gnunet-service-mesh_connection.c b/src/mesh/gnunet-service-mesh_connection.c
index 2f047da0d..417bda417 100644
--- a/src/mesh/gnunet-service-mesh_connection.c
+++ b/src/mesh/gnunet-service-mesh_connection.c
@@ -1067,7 +1067,7 @@ connection_bck_timeout (void *cls,
1067 * a keepalive or a path confirmation message (either create or ACK). 1067 * a keepalive or a path confirmation message (either create or ACK).
1068 * - For all other peers, this means to destroy the connection, 1068 * - For all other peers, this means to destroy the connection,
1069 * due to lack of activity. 1069 * due to lack of activity.
1070 * Starts the tiemout if no timeout was running (connection just created). 1070 * Starts the timeout if no timeout was running (connection just created).
1071 * 1071 *
1072 * @param c Connection whose timeout to reset. 1072 * @param c Connection whose timeout to reset.
1073 * @param fwd Is this forward? 1073 * @param fwd Is this forward?
@@ -1291,8 +1291,8 @@ GMC_handle_create (void *cls, const struct GNUNET_PeerIdentity *peer,
1291 1291
1292 /* Keep tunnel alive in direction dest->owner*/ 1292 /* Keep tunnel alive in direction dest->owner*/
1293 c->bck_maintenance_task = 1293 c->bck_maintenance_task =
1294 GNUNET_SCHEDULER_add_delayed (create_connection_time, 1294 GNUNET_SCHEDULER_add_delayed (create_connection_time,
1295 &connection_bck_keepalive, c); 1295 &connection_bck_keepalive, c);
1296 } 1296 }
1297 else 1297 else
1298 { 1298 {
@@ -2176,8 +2176,8 @@ GMC_new (const struct GNUNET_HashCode *cid,
2176 if (0 == own_pos) 2176 if (0 == own_pos)
2177 { 2177 {
2178 c->fwd_maintenance_task = 2178 c->fwd_maintenance_task =
2179 GNUNET_SCHEDULER_add_delayed (create_connection_time, 2179 GNUNET_SCHEDULER_add_delayed (create_connection_time,
2180 &connection_fwd_keepalive, c); 2180 &connection_fwd_keepalive, c);
2181 } 2181 }
2182 if (GNUNET_OK != register_neighbors (c)) 2182 if (GNUNET_OK != register_neighbors (c))
2183 { 2183 {