aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_peer.h
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-05-14 16:50:31 +0000
committerBart Polot <bart@net.in.tum.de>2014-05-14 16:50:31 +0000
commit5c0ab6d4fc351e7924f609a1f3bd3ba24f9230ae (patch)
tree04f25e47ea152300815684de13489846708cb028 /src/cadet/gnunet-service-cadet_peer.h
parent9aaa554470dbff968c6cab7a2850a15318c1f15b (diff)
downloadgnunet-5c0ab6d4fc351e7924f609a1f3bd3ba24f9230ae.tar.gz
gnunet-5c0ab6d4fc351e7924f609a1f3bd3ba24f9230ae.zip
- stop using CadetTunnel3 and go back to CadetTunnel
Diffstat (limited to 'src/cadet/gnunet-service-cadet_peer.h')
-rw-r--r--src/cadet/gnunet-service-cadet_peer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cadet/gnunet-service-cadet_peer.h b/src/cadet/gnunet-service-cadet_peer.h
index e9668305b..71e85d7ee 100644
--- a/src/cadet/gnunet-service-cadet_peer.h
+++ b/src/cadet/gnunet-service-cadet_peer.h
@@ -187,7 +187,7 @@ GCP_queue_unlock (struct CadetPeer *peer, struct CadetConnection *c);
187 * @param t Tunnel. 187 * @param t Tunnel.
188 */ 188 */
189void 189void
190GCP_set_tunnel (struct CadetPeer *peer, struct CadetTunnel3 *t); 190GCP_set_tunnel (struct CadetPeer *peer, struct CadetTunnel *t);
191 191
192/** 192/**
193 * Check whether there is a direct (core level) connection to peer. 193 * Check whether there is a direct (core level) connection to peer.
@@ -332,7 +332,7 @@ GCP_get_short_id (const struct CadetPeer *peer);
332 * 332 *
333 * @return Tunnel towards peer. 333 * @return Tunnel towards peer.
334 */ 334 */
335struct CadetTunnel3 * 335struct CadetTunnel *
336GCP_get_tunnel (const struct CadetPeer *peer); 336GCP_get_tunnel (const struct CadetPeer *peer);
337 337
338/** 338/**