aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet_connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cadet/gnunet-service-cadet_connection.h')
-rw-r--r--src/cadet/gnunet-service-cadet_connection.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cadet/gnunet-service-cadet_connection.h b/src/cadet/gnunet-service-cadet_connection.h
index fdb184366..1c0475d40 100644
--- a/src/cadet/gnunet-service-cadet_connection.h
+++ b/src/cadet/gnunet-service-cadet_connection.h
@@ -300,10 +300,12 @@ GCC_get_ct (struct CadetConnection *cc);
300 * Obtain the path used by this connection. 300 * Obtain the path used by this connection.
301 * 301 *
302 * @param cc connection 302 * @param cc connection
303 * @param off[out] set to offset in this path where the connection @a cc ends
303 * @return path to @a cc 304 * @return path to @a cc
304 */ 305 */
305struct CadetPeerPath * 306struct CadetPeerPath *
306GCC_get_path (struct CadetConnection *cc); 307GCC_get_path (struct CadetConnection *cc,
308 unsigned int *off);
307 309
308 310
309/** 311/**