aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_transport_service.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-03-26 10:54:36 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-03-26 10:54:36 +0000
commit899875ca1136823ac5eafebeacd32309c16b6828 (patch)
tree3576dc697e528365a2cc7f0d22c4d7908445cdd5 /src/include/gnunet_transport_service.h
parentc279072752d3c79a0550c489e944b5ab7d270266 (diff)
downloadgnunet-899875ca1136823ac5eafebeacd32309c16b6828.tar.gz
gnunet-899875ca1136823ac5eafebeacd32309c16b6828.zip
remove state
Diffstat (limited to 'src/include/gnunet_transport_service.h')
-rw-r--r--src/include/gnunet_transport_service.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/include/gnunet_transport_service.h b/src/include/gnunet_transport_service.h
index ba85cfce6..0f231b0ea 100644
--- a/src/include/gnunet_transport_service.h
+++ b/src/include/gnunet_transport_service.h
@@ -48,7 +48,8 @@ extern "C"
48 * Possible state of a neighbour. Initially, we are #GNUNET_TRANSPORT_PS_NOT_CONNECTED. 48 * Possible state of a neighbour. Initially, we are #GNUNET_TRANSPORT_PS_NOT_CONNECTED.
49 * 49 *
50 * Then, there are two main paths. If we receive a CONNECT message, we 50 * Then, there are two main paths. If we receive a CONNECT message, we
51 * first run a check against the blacklist (#GNUNET_TRANSPORT_PS_CONNECT_RECV_BLACKLIST_INBOUND). 51 * first run a check against the blacklist if we are allowed to communicate with
52 * this peer (#GNUNET_TRANSPORT_PS_CONNECT_RECV_BLACKLIST_INBOUND).
52 * If this check is successful, we give the inbound address to ATS. 53 * If this check is successful, we give the inbound address to ATS.
53 * After the check we ask ATS for a suggestion (#GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS). 54 * After the check we ask ATS for a suggestion (#GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS).
54 * If ATS makes a suggestion, we ALSO give that suggestion to the blacklist 55 * If ATS makes a suggestion, we ALSO give that suggestion to the blacklist
@@ -129,11 +130,6 @@ enum GNUNET_TRANSPORT_PeerState
129 GNUNET_TRANSPORT_PS_CONNECT_SENT, 130 GNUNET_TRANSPORT_PS_CONNECT_SENT,
130 131
131 /** 132 /**
132 * Received a CONNECT, do a blacklist check for inbound address
133 */
134 GNUNET_TRANSPORT_PS_CONNECT_RECV_BLACKLIST_INBOUND,
135
136 /**
137 * Received a CONNECT, asking ATS about address suggestions. 133 * Received a CONNECT, asking ATS about address suggestions.
138 */ 134 */
139 GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS, 135 GNUNET_TRANSPORT_PS_CONNECT_RECV_ATS,