aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/gnunet-service-mesh.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2011-10-20 18:20:49 +0000
committerBart Polot <bart@net.in.tum.de>2011-10-20 18:20:49 +0000
commitbd6d53b9caba0093c535988463cdf4f726f6c7f8 (patch)
tree29b740dd60e03f2dfda509c2c502dbf3e911fcb5 /src/mesh/gnunet-service-mesh.c
parente15048219fadfb1f05c3c7771f256c01cef057f0 (diff)
downloadgnunet-bd6d53b9caba0093c535988463cdf4f726f6c7f8.tar.gz
gnunet-bd6d53b9caba0093c535988463cdf4f726f6c7f8.zip
Changed testcase to include real multicast tests
Diffstat (limited to 'src/mesh/gnunet-service-mesh.c')
-rw-r--r--src/mesh/gnunet-service-mesh.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesh/gnunet-service-mesh.c b/src/mesh/gnunet-service-mesh.c
index 0f2bbe3cf..8d37ae7ab 100644
--- a/src/mesh/gnunet-service-mesh.c
+++ b/src/mesh/gnunet-service-mesh.c
@@ -1238,6 +1238,9 @@ peer_info_connect (struct MeshPeerInfo *peer, struct MeshTunnel *t)
1238 path_info = GNUNET_malloc(sizeof(struct MeshPathInfo)); 1238 path_info = GNUNET_malloc(sizeof(struct MeshPathInfo));
1239 path_info->peer = peer; 1239 path_info->peer = peer;
1240 path_info->t = t; 1240 path_info->t = t;
1241 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1242 "MESH: Starting DHT GET for peer %s\n",
1243 GNUNET_i2s (&id));
1241 peer->dhtget = 1244 peer->dhtget =
1242 GNUNET_DHT_get_start(dht_handle, /* handle */ 1245 GNUNET_DHT_get_start(dht_handle, /* handle */
1243 GNUNET_TIME_UNIT_FOREVER_REL, /* timeout */ 1246 GNUNET_TIME_UNIT_FOREVER_REL, /* timeout */
@@ -1297,6 +1300,7 @@ tunnel_notify_connection_broken (struct MeshTunnel *t,
1297 struct MeshPeerInfo *peer, GNUNET_PEER_Id p1, 1300 struct MeshPeerInfo *peer, GNUNET_PEER_Id p1,
1298 GNUNET_PEER_Id p2); 1301 GNUNET_PEER_Id p2);
1299 1302
1303
1300/** 1304/**
1301 * Remove all paths that rely on a direct connection between p1 and p2 1305 * Remove all paths that rely on a direct connection between p1 and p2
1302 * from the peer itself and notify all tunnels about it. 1306 * from the peer itself and notify all tunnels about it.