aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_neighbours.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-12-20 13:24:45 +0000
committerChristian Grothoff <christian@grothoff.org>2014-12-20 13:24:45 +0000
commit12bda91777d20fff1fb016d89db08075d45204ab (patch)
tree93b699adf1394709168ce4ed969d49ddcfbfa2b8 /src/transport/gnunet-service-transport_neighbours.c
parent2f91118b949633f4b2ba1ea3dab9033dd9a8bf50 (diff)
downloadgnunet-12bda91777d20fff1fb016d89db08075d45204ab.tar.gz
gnunet-12bda91777d20fff1fb016d89db08075d45204ab.zip
-add assertion
Diffstat (limited to 'src/transport/gnunet-service-transport_neighbours.c')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.c b/src/transport/gnunet-service-transport_neighbours.c
index 7abe36f3e..695adedc9 100644
--- a/src/transport/gnunet-service-transport_neighbours.c
+++ b/src/transport/gnunet-service-transport_neighbours.c
@@ -94,12 +94,16 @@ enum GST_ACK_State
94 */ 94 */
95 ACK_UNDEFINED = 0, 95 ACK_UNDEFINED = 0,
96 96
97 /* The neighbour received a SYN message and has to send a SYN_ACK 97 /**
98 * as reply */ 98 * The neighbour received a SYN message and has to send a SYN_ACK
99 * as reply
100 */
99 ACK_SEND_SYN_ACK = 1, 101 ACK_SEND_SYN_ACK = 1,
100 102
101 /* The neighbour sent a SYN_ACK message and has to send a ACK 103 /**
102 * as reply */ 104 * The neighbour sent a SYN_ACK message and has to send a ACK
105 * as reply
106 */
103 ACK_SEND_ACK = 2 107 ACK_SEND_ACK = 2
104}; 108};
105 109