aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_transport_communication_service.h
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2021-04-25 16:02:08 +0200
committert3sserakt <t3ss@posteo.de>2021-04-25 16:02:52 +0200
commitcef6317f17a706647c0a5d5f7e52548a7130b713 (patch)
treecc29c4d4c2ae83115a313b32653757e370b88c6c /src/include/gnunet_transport_communication_service.h
parent9ffa19269054bf1e569fe584c0c51a00205a735d (diff)
parentb996ba4156678b6a0a551b9a932867b2ade42344 (diff)
downloadgnunet-cef6317f17a706647c0a5d5f7e52548a7130b713.tar.gz
gnunet-cef6317f17a706647c0a5d5f7e52548a7130b713.zip
Merge branch 'master' of ssh://gnunet.org/gnunet
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};