aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/gnunet-service-cadet-new.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-01-18 19:24:33 +0100
committerChristian Grothoff <christian@grothoff.org>2017-01-18 19:24:33 +0100
commitdfde8ea01a08a32340a47df29ffc2571c031488b (patch)
tree81abde784965de4a4d3f32f882a39353cc96a88d /src/cadet/gnunet-service-cadet-new.h
parent3edc21c27d208e45dc1af76131a480a3ebf1e8d3 (diff)
downloadgnunet-dfde8ea01a08a32340a47df29ffc2571c031488b.tar.gz
gnunet-dfde8ea01a08a32340a47df29ffc2571c031488b.zip
create matching connection objects for inbound connections
Diffstat (limited to 'src/cadet/gnunet-service-cadet-new.h')
-rw-r--r--src/cadet/gnunet-service-cadet-new.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cadet/gnunet-service-cadet-new.h b/src/cadet/gnunet-service-cadet-new.h
index 3258a6666..862a0f088 100644
--- a/src/cadet/gnunet-service-cadet-new.h
+++ b/src/cadet/gnunet-service-cadet-new.h
@@ -29,6 +29,7 @@
29#define GNUNET_SERVICE_CADET_H 29#define GNUNET_SERVICE_CADET_H
30 30
31#include "gnunet_util_lib.h" 31#include "gnunet_util_lib.h"
32#define NEW_CADET 1
32 33
33/** 34/**
34 * A client to the CADET service. Each client gets a unique handle. 35 * A client to the CADET service. Each client gets a unique handle.
@@ -113,6 +114,16 @@ struct CadetTConnection;
113struct CadetConnection; 114struct CadetConnection;
114 115
115/** 116/**
117 * Description of a segment of a `struct CadetConnection` at the
118 * intermediate peers. Routes are basically entries in a peer's
119 * routing table for forwarding traffic. At both endpoints, the
120 * routes are terminated by a `struct CadetConnection`, which knows
121 * the complete `struct CadetPath` that is formed by the individual
122 * routes.
123 */
124struct CadetRoute;
125
126/**
116 * Logical end-to-end conenction between clients. There can be 127 * Logical end-to-end conenction between clients. There can be
117 * any number of channels between clients. 128 * any number of channels between clients.
118 */ 129 */