aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_neighbours.c
diff options
context:
space:
mode:
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