aboutsummaryrefslogtreecommitdiff
path: root/src/cadet
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-09-02 22:45:52 +0100
committerWillow Liquorice <willow@howhill.com>2022-10-03 00:44:29 +0100
commitd4f25caabd6098a2cbb713c9cd8228c1f9a26fe4 (patch)
treefd9e4747415780951809ae3c1ff7330a32853923 /src/cadet
parente13e66d0dc6a79f6dfe469ba075f307c006fdb66 (diff)
downloadgnunet-d4f25caabd6098a2cbb713c9cd8228c1f9a26fe4.tar.gz
gnunet-d4f25caabd6098a2cbb713c9cd8228c1f9a26fe4.zip
-DOC: Minor fixes to doc comments (mostly correcting typos) to resolve 'unknown command' warnings
Diffstat (limited to 'src/cadet')
-rw-r--r--src/cadet/gnunet-service-cadet_channel.c4
-rw-r--r--src/cadet/gnunet-service-cadet_peer.c4
-rw-r--r--src/cadet/gnunet-service-cadet_tunnels.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/cadet/gnunet-service-cadet_channel.c b/src/cadet/gnunet-service-cadet_channel.c
index f742ba4a7..78658c296 100644
--- a/src/cadet/gnunet-service-cadet_channel.c
+++ b/src/cadet/gnunet-service-cadet_channel.c
@@ -1157,7 +1157,7 @@ GCCH_handle_channel_open_ack (
1157 * @param cls closure, to a flag where we indicate duplicate packets 1157 * @param cls closure, to a flag where we indicate duplicate packets
1158 * @param m1 a message of to sort 1158 * @param m1 a message of to sort
1159 * @param m2 another message to sort 1159 * @param m2 another message to sort
1160 * @return #GNUNET_YES if @e1 < @e2, otherwise #GNUNET_NO 1160 * @return #GNUNET_YES if @a e1 < @a e2, otherwise #GNUNET_NO
1161 */ 1161 */
1162static int 1162static int
1163is_before (void *cls, 1163is_before (void *cls,
@@ -1645,7 +1645,7 @@ GCCH_handle_remote_destroy (
1645 * @param cls closure, to a flag where we indicate duplicate packets 1645 * @param cls closure, to a flag where we indicate duplicate packets
1646 * @param crm1 an element of to sort 1646 * @param crm1 an element of to sort
1647 * @param crm2 another element to sort 1647 * @param crm2 another element to sort
1648 * @return #GNUNET_YES if @e1 < @e2, otherwise #GNUNET_NO 1648 * @return #GNUNET_YES if @a e1 < @a e2, otherwise #GNUNET_NO
1649 */ 1649 */
1650static int 1650static int
1651cmp_crm_by_next_retry (void *cls, 1651cmp_crm_by_next_retry (void *cls,
diff --git a/src/cadet/gnunet-service-cadet_peer.c b/src/cadet/gnunet-service-cadet_peer.c
index 99669eb05..3fb0eed94 100644
--- a/src/cadet/gnunet-service-cadet_peer.c
+++ b/src/cadet/gnunet-service-cadet_peer.c
@@ -211,7 +211,7 @@ struct CadetPeer
211 211
212 /** 212 /**
213 * Sum over all of the offsets of all of the paths in the @a path_heads DLLs. 213 * Sum over all of the offsets of all of the paths in the @a path_heads DLLs.
214 * Used to speed-up @GCP_get_desirability_of_path() calculation. 214 * Used to speed-up #GCP_get_desirability_of_path() calculation.
215 */ 215 */
216 unsigned int off_sum; 216 unsigned int off_sum;
217 217
@@ -225,7 +225,7 @@ struct CadetPeer
225 unsigned int mqm_ready_counter; 225 unsigned int mqm_ready_counter;
226 226
227 /** 227 /**
228 * Current length of the @e path_heads and @path_tails arrays. 228 * Current length of the @e path_heads and @e path_tails arrays.
229 * The arrays should be grown as needed. 229 * The arrays should be grown as needed.
230 */ 230 */
231 unsigned int path_dll_length; 231 unsigned int path_dll_length;
diff --git a/src/cadet/gnunet-service-cadet_tunnels.c b/src/cadet/gnunet-service-cadet_tunnels.c
index 9653fd3ec..ca91a0e01 100644
--- a/src/cadet/gnunet-service-cadet_tunnels.c
+++ b/src/cadet/gnunet-service-cadet_tunnels.c
@@ -169,7 +169,7 @@ struct CadetTunnelAxolotl
169 * 32-byte chain keys (used for forward-secrecy) for 169 * 32-byte chain keys (used for forward-secrecy) for
170 * receiving messages. Updated for every message. If 170 * receiving messages. Updated for every message. If
171 * messages are skipped, the respective derived MKs 171 * messages are skipped, the respective derived MKs
172 * (and the current @HKr) are kept in the @e skipped_head DLL. 172 * (and the current @e HKr) are kept in the @e skipped_head DLL.
173 */ 173 */
174 struct GNUNET_CRYPTO_SymmetricSessionKey CKr; 174 struct GNUNET_CRYPTO_SymmetricSessionKey CKr;
175 175