aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_connection.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_connection.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_connection.h')
-rw-r--r--src/cadet/gnunet-service-cadet_connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cadet/gnunet-service-cadet_connection.h b/src/cadet/gnunet-service-cadet_connection.h
index 535488260..5d12ce7b3 100644
--- a/src/cadet/gnunet-service-cadet_connection.h
+++ b/src/cadet/gnunet-service-cadet_connection.h
@@ -267,7 +267,7 @@ GCC_shutdown (void);
267 */ 267 */
268struct CadetConnection * 268struct CadetConnection *
269GCC_new (const struct GNUNET_CADET_Hash *cid, 269GCC_new (const struct GNUNET_CADET_Hash *cid,
270 struct CadetTunnel3 *t, 270 struct CadetTunnel *t,
271 struct CadetPeerPath *p, 271 struct CadetPeerPath *p,
272 unsigned int own_pos); 272 unsigned int own_pos);
273 273
@@ -331,7 +331,7 @@ GCC_get_state (const struct CadetConnection *c);
331 * 331 *
332 * @return tunnel of the connection. 332 * @return tunnel of the connection.
333 */ 333 */
334struct CadetTunnel3 * 334struct CadetTunnel *
335GCC_get_tunnel (const struct CadetConnection *c); 335GCC_get_tunnel (const struct CadetConnection *c);
336 336
337/** 337/**