aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_transport_communication_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_transport_communication_service.h')
-rw-r--r--src/include/gnunet_transport_communication_service.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_transport_communication_service.h b/src/include/gnunet_transport_communication_service.h
index af2e36b4d..81a382fb2 100644
--- a/src/include/gnunet_transport_communication_service.h
+++ b/src/include/gnunet_transport_communication_service.h
@@ -94,17 +94,17 @@ struct GNUNET_TRANSPORT_CommunicatorHandle;
94enum GNUNET_TRANSPORT_CommunicatorCharacteristics 94enum GNUNET_TRANSPORT_CommunicatorCharacteristics
95{ 95{
96 /** 96 /**
97 * Characteristics are unknown (i.e. DV). 97 * Characteristics are unknown (e.g. DV).
98 */ 98 */
99 GNUNET_TRANSPORT_CC_UNKNOWN = 0, 99 GNUNET_TRANSPORT_CC_UNKNOWN = 0,
100 100
101 /** 101 /**
102 * Transmission is reliabile (with ACKs), i.e. TCP/HTTP/HTTPS. 102 * Transmission is reliabile (with ACKs), e.g. TCP/HTTP/HTTPS.
103 */ 103 */
104 GNUNET_TRANSPORT_CC_RELIABLE = 1, 104 GNUNET_TRANSPORT_CC_RELIABLE = 1,
105 105
106 /** 106 /**
107 * Transmission is unreliable (i.e. UDP) 107 * Transmission is unreliable (e.g. UDP)
108 */ 108 */
109 GNUNET_TRANSPORT_CC_UNRELIABLE = 2 109 GNUNET_TRANSPORT_CC_UNRELIABLE = 2
110}; 110};