aboutsummaryrefslogtreecommitdiff
path: root/src/cadet
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-04-26 20:00:55 +0200
committerChristian Grothoff <christian@grothoff.org>2021-04-26 20:00:55 +0200
commit1f2674fe293be7c1a852fbe4a7241fbcb149078f (patch)
tree075dd0aa3d2b19b0c62b18bdf3d99f324dea2966 /src/cadet
parent82a5d35360c4c882d9a5f92c4ac27c61bd4a4cc5 (diff)
downloadgnunet-1f2674fe293be7c1a852fbe4a7241fbcb149078f.tar.gz
gnunet-1f2674fe293be7c1a852fbe4a7241fbcb149078f.zip
-fix typos
Diffstat (limited to 'src/cadet')
-rw-r--r--src/cadet/gnunet-service-cadet.h2
-rw-r--r--src/cadet/gnunet-service-cadet_channel.h2
-rw-r--r--src/cadet/gnunet-service-cadet_connection.h2
-rw-r--r--src/cadet/gnunet-service-cadet_paths.h4
-rw-r--r--src/cadet/gnunet-service-cadet_peer.h2
-rw-r--r--src/cadet/gnunet-service-cadet_tunnels.h4
6 files changed, 8 insertions, 8 deletions
diff --git a/src/cadet/gnunet-service-cadet.h b/src/cadet/gnunet-service-cadet.h
index 6da0950f1..3d61b9973 100644
--- a/src/cadet/gnunet-service-cadet.h
+++ b/src/cadet/gnunet-service-cadet.h
@@ -181,7 +181,7 @@ struct CadetConnection;
181struct CadetRoute; 181struct CadetRoute;
182 182
183/** 183/**
184 * Logical end-to-end conenction between clients. There can be 184 * Logical end-to-end connection between clients. There can be
185 * any number of channels between clients. 185 * any number of channels between clients.
186 */ 186 */
187struct CadetChannel; 187struct CadetChannel;
diff --git a/src/cadet/gnunet-service-cadet_channel.h b/src/cadet/gnunet-service-cadet_channel.h
index 7a072f128..6d691cafc 100644
--- a/src/cadet/gnunet-service-cadet_channel.h
+++ b/src/cadet/gnunet-service-cadet_channel.h
@@ -34,7 +34,7 @@
34 34
35/** 35/**
36 * A channel is a bidirectional connection between two CADET 36 * A channel is a bidirectional connection between two CADET
37 * clients. Communiation can be reliable, unreliable, in-order 37 * clients. Communication can be reliable, unreliable, in-order
38 * or out-of-order. One client is the "local" client, this 38 * or out-of-order. One client is the "local" client, this
39 * one initiated the connection. The other client is the 39 * one initiated the connection. The other client is the
40 * "incoming" client, this one listened on a port to accept 40 * "incoming" client, this one listened on a port to accept
diff --git a/src/cadet/gnunet-service-cadet_connection.h b/src/cadet/gnunet-service-cadet_connection.h
index ed0e909fb..d646b3dc2 100644
--- a/src/cadet/gnunet-service-cadet_connection.h
+++ b/src/cadet/gnunet-service-cadet_connection.h
@@ -37,7 +37,7 @@
37 37
38 38
39/** 39/**
40 * Function called to notify tunnel about change in our readyness. 40 * Function called to notify tunnel about change in our readiness.
41 * 41 *
42 * @param cls closure 42 * @param cls closure
43 * @param is_ready #GNUNET_YES if the connection is now ready for transmission, 43 * @param is_ready #GNUNET_YES if the connection is now ready for transmission,
diff --git a/src/cadet/gnunet-service-cadet_paths.h b/src/cadet/gnunet-service-cadet_paths.h
index 125ea669a..3961dd721 100644
--- a/src/cadet/gnunet-service-cadet_paths.h
+++ b/src/cadet/gnunet-service-cadet_paths.h
@@ -37,7 +37,7 @@
37 * if applicable. 37 * if applicable.
38 * 38 *
39 * @param get_path path of the get request 39 * @param get_path path of the get request
40 * @param get_path_length lenght of @a get_path 40 * @param get_path_length length of @a get_path
41 * @param put_path path of the put request 41 * @param put_path path of the put request
42 * @param put_path_length length of the @a put_path 42 * @param put_path_length length of the @a put_path
43 */ 43 */
@@ -130,7 +130,7 @@ GCPP_find_peer (struct CadetPeerPath *path,
130/** 130/**
131 * Return how much we like keeping the path. This is an aggregate 131 * Return how much we like keeping the path. This is an aggregate
132 * score based on various factors, including the age of the path 132 * score based on various factors, including the age of the path
133 * (older == better), and the value of this path to all of its ajacent 133 * (older == better), and the value of this path to all of its adjacent
134 * peers. For example, long paths that end at a peer that we have no 134 * peers. For example, long paths that end at a peer that we have no
135 * shorter way to reach are very desirable, while long paths that end 135 * shorter way to reach are very desirable, while long paths that end
136 * at a peer for which we have a shorter way as well are much less 136 * at a peer for which we have a shorter way as well are much less
diff --git a/src/cadet/gnunet-service-cadet_peer.h b/src/cadet/gnunet-service-cadet_peer.h
index 5782b8bff..7a39615ff 100644
--- a/src/cadet/gnunet-service-cadet_peer.h
+++ b/src/cadet/gnunet-service-cadet_peer.h
@@ -43,7 +43,7 @@ GCP_2s (const struct CadetPeer *peer);
43 43
44 44
45/** 45/**
46 * Retrieve the CadetPeer stucture associated with the 46 * Retrieve the CadetPeer structure associated with the
47 * peer. Optionally create one and insert it in the appropriate 47 * peer. Optionally create one and insert it in the appropriate
48 * structures if the peer is not known yet. 48 * structures if the peer is not known yet.
49 * 49 *
diff --git a/src/cadet/gnunet-service-cadet_tunnels.h b/src/cadet/gnunet-service-cadet_tunnels.h
index 075cd03f8..aea131542 100644
--- a/src/cadet/gnunet-service-cadet_tunnels.h
+++ b/src/cadet/gnunet-service-cadet_tunnels.h
@@ -101,7 +101,7 @@ GCT_2s (const struct CadetTunnel *t);
101 101
102 102
103/** 103/**
104 * Create a tunnel to @a destionation. Must only be called 104 * Create a tunnel to @a destination. Must only be called
105 * from within #GCP_get_tunnel(). 105 * from within #GCP_get_tunnel().
106 * 106 *
107 * @param destination where to create the tunnel to 107 * @param destination where to create the tunnel to
@@ -124,7 +124,7 @@ GCT_destroy_tunnel_now (struct CadetTunnel *t);
124 * Add a @a connection to the @a tunnel. 124 * Add a @a connection to the @a tunnel.
125 * 125 *
126 * @param t a tunnel 126 * @param t a tunnel
127 * @param cid connection identifer to use for the connection 127 * @param cid connection identifier to use for the connection
128 * @param path path to use for the connection 128 * @param path path to use for the connection
129 * @return #GNUNET_OK on success, 129 * @return #GNUNET_OK on success,
130 * #GNUNET_SYSERR on failure (duplicate connection) 130 * #GNUNET_SYSERR on failure (duplicate connection)