aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-10-18 20:17:17 +0000
committerBart Polot <bart@net.in.tum.de>2013-10-18 20:17:17 +0000
commitd6b03105779d2a22b5b5bf5016ad823fe7ac3485 (patch)
tree5f312e6cfe564e8a14b3b9e68d7fbc4c73c6c839
parent056f559d916d785164f40e63ca56c153ea0e9ebe (diff)
downloadgnunet-d6b03105779d2a22b5b5bf5016ad823fe7ac3485.tar.gz
gnunet-d6b03105779d2a22b5b5bf5016ad823fe7ac3485.zip
- doxygen
-rw-r--r--src/mesh/gnunet-service-mesh_channel.h4
-rw-r--r--src/mesh/gnunet-service-mesh_local.h10
-rw-r--r--src/mesh/gnunet-service-mesh_peer.c1
-rw-r--r--src/mesh/gnunet-service-mesh_tunnel.c1
-rw-r--r--src/mesh/gnunet-service-mesh_tunnel.h4
5 files changed, 9 insertions, 11 deletions
diff --git a/src/mesh/gnunet-service-mesh_channel.h b/src/mesh/gnunet-service-mesh_channel.h
index aaead6c30..726d7c025 100644
--- a/src/mesh/gnunet-service-mesh_channel.h
+++ b/src/mesh/gnunet-service-mesh_channel.h
@@ -274,7 +274,7 @@ GMCH_handle_create (struct MeshTunnel3 *t,
274/** 274/**
275 * Handler for channel ack messages. 275 * Handler for channel ack messages.
276 * 276 *
277 * @param t Tunnel this channel is to be created in. 277 * @param ch Channel this channel is to be created in.
278 * @param msg Message. 278 * @param msg Message.
279 * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO; 279 * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
280 */ 280 */
@@ -286,7 +286,7 @@ GMCH_handle_ack (struct MeshChannel *ch,
286/** 286/**
287 * Handler for channel destroy messages. 287 * Handler for channel destroy messages.
288 * 288 *
289 * @param t Tunnel this channel is to be destroyed of. 289 * @param ch Channel this channel is to be destroyed of.
290 * @param msg Message. 290 * @param msg Message.
291 * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO; 291 * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
292 */ 292 */
diff --git a/src/mesh/gnunet-service-mesh_local.h b/src/mesh/gnunet-service-mesh_local.h
index e10db1161..0c07fedfe 100644
--- a/src/mesh/gnunet-service-mesh_local.h
+++ b/src/mesh/gnunet-service-mesh_local.h
@@ -72,15 +72,15 @@ void
72GML_shutdown (void); 72GML_shutdown (void);
73 73
74/** 74/**
75 * Get a chennel from a client 75 * Get a channel from a client.
76 * 76 *
77 * @param client the client to check 77 * @param c Client to check.
78 * @param chid Channel ID 78 * @param chid Channel ID, must be local (> 0x800...).
79 * 79 *
80 * @return non-NULL if channel exists in the global DLL 80 * @return non-NULL if channel exists in the clients lists
81 */ 81 */
82struct MeshChannel * 82struct MeshChannel *
83GML_channel_get (struct MeshClient *client, uint32_t chid); 83GML_channel_get (struct MeshClient *c, uint32_t chid);
84 84
85/** 85/**
86 * Add a channel to a client 86 * Add a channel to a client
diff --git a/src/mesh/gnunet-service-mesh_peer.c b/src/mesh/gnunet-service-mesh_peer.c
index 6f46796a2..b6a241b24 100644
--- a/src/mesh/gnunet-service-mesh_peer.c
+++ b/src/mesh/gnunet-service-mesh_peer.c
@@ -1156,7 +1156,6 @@ GMP_queue_unlock (struct MeshPeer *peer, struct MeshConnection *c)
1156 * Initialize the peer subsystem. 1156 * Initialize the peer subsystem.
1157 * 1157 *
1158 * @param c Configuration. 1158 * @param c Configuration.
1159 * @param id Peer identity
1160 */ 1159 */
1161void 1160void
1162GMP_init (const struct GNUNET_CONFIGURATION_Handle *c) 1161GMP_init (const struct GNUNET_CONFIGURATION_Handle *c)
diff --git a/src/mesh/gnunet-service-mesh_tunnel.c b/src/mesh/gnunet-service-mesh_tunnel.c
index d0f3df14b..6d3c4c6e7 100644
--- a/src/mesh/gnunet-service-mesh_tunnel.c
+++ b/src/mesh/gnunet-service-mesh_tunnel.c
@@ -624,7 +624,6 @@ GMT_send_queued_data (struct MeshTunnel3 *t, int fwd)
624 * Initialize the tunnel subsystem. 624 * Initialize the tunnel subsystem.
625 * 625 *
626 * @param c Configuration handle. 626 * @param c Configuration handle.
627 * @param id Peer identity.
628 * @param key ECC private key, to derive all other keys and do crypto. 627 * @param key ECC private key, to derive all other keys and do crypto.
629 */ 628 */
630void 629void
diff --git a/src/mesh/gnunet-service-mesh_tunnel.h b/src/mesh/gnunet-service-mesh_tunnel.h
index 369713e66..81c417dbd 100644
--- a/src/mesh/gnunet-service-mesh_tunnel.h
+++ b/src/mesh/gnunet-service-mesh_tunnel.h
@@ -312,7 +312,7 @@ MESH_ChannelNumber
312GMT_get_next_chid (struct MeshTunnel3 *t); 312GMT_get_next_chid (struct MeshTunnel3 *t);
313 313
314/** 314/**
315 * Send ACK on one or more channels due to buffer in connections.. 315 * Send ACK on one or more channels due to buffer in connections.
316 * 316 *
317 * @param t Channel which has some free buffer space. 317 * @param t Channel which has some free buffer space.
318 * @param fwd Is this for FWD traffic? (ACK goes to root) 318 * @param fwd Is this for FWD traffic? (ACK goes to root)
@@ -325,7 +325,7 @@ GMT_unchoke_channels (struct MeshTunnel3 *t, int fwd);
325 * 325 *
326 * Iterates all connections of the tunnel and sends ACKs appropriately. 326 * Iterates all connections of the tunnel and sends ACKs appropriately.
327 * 327 *
328 * @param ch Channel which has some free buffer space. 328 * @param t Tunnel which has some free buffer space.
329 * @param fwd Is this in for FWD traffic? (ACK goes dest->root) 329 * @param fwd Is this in for FWD traffic? (ACK goes dest->root)
330 */ 330 */
331void 331void