aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_tunnel.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-17 11:54:31 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-17 11:54:31 +0100
commit500842f42c4e51c4c5fc3c1cdfc1c1f7166b2d0d (patch)
tree9a80967af02b49319d0ab406b0ec9fa3d31e13fd /src/cadet/gnunet-service-cadet_tunnel.c
parentd0bb14e2a958f4f816c6c006dd8b7a979e6de289 (diff)
downloadgnunet-500842f42c4e51c4c5fc3c1cdfc1c1f7166b2d0d.tar.gz
gnunet-500842f42c4e51c4c5fc3c1cdfc1c1f7166b2d0d.zip
more work on new CADET
Diffstat (limited to 'src/cadet/gnunet-service-cadet_tunnel.c')
-rw-r--r--src/cadet/gnunet-service-cadet_tunnel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cadet/gnunet-service-cadet_tunnel.c b/src/cadet/gnunet-service-cadet_tunnel.c
index 2e17774d4..29087dba4 100644
--- a/src/cadet/gnunet-service-cadet_tunnel.c
+++ b/src/cadet/gnunet-service-cadet_tunnel.c
@@ -1406,7 +1406,7 @@ send_prebuilt_message (const struct GNUNET_MessageHeader *message,
1406 "Sending message of type %s with PID %u and CID %s\n", 1406 "Sending message of type %s with PID %u and CID %s\n",
1407 GC_m2s (type), 1407 GC_m2s (type),
1408 htonl (ax_msg->pid), 1408 htonl (ax_msg->pid),
1409 GC_h2s (&ax_msg->cid)); 1409 GC_h2s (&ax_msg->cid.connection_of_tunnel));
1410 1410
1411 if (NULL == cont) 1411 if (NULL == cont)
1412 { 1412 {
@@ -2744,7 +2744,7 @@ struct CadetConnection *
2744GCT_use_path (struct CadetTunnel *t, struct CadetPeerPath *path) 2744GCT_use_path (struct CadetTunnel *t, struct CadetPeerPath *path)
2745{ 2745{
2746 struct CadetConnection *c; 2746 struct CadetConnection *c;
2747 struct GNUNET_CADET_Hash cid; 2747 struct GNUNET_CADET_ConnectionTunnelIdentifier cid;
2748 unsigned int own_pos; 2748 unsigned int own_pos;
2749 2749
2750 if (NULL == t || NULL == path) 2750 if (NULL == t || NULL == path)