- doxygen
authorBart Polot <bart@net.in.tum.de>
Fri, 18 Oct 2013 20:17:17 +0000 (20:17 +0000)
committerBart Polot <bart@net.in.tum.de>
Fri, 18 Oct 2013 20:17:17 +0000 (20:17 +0000)
src/mesh/gnunet-service-mesh_channel.h
src/mesh/gnunet-service-mesh_local.h
src/mesh/gnunet-service-mesh_peer.c
src/mesh/gnunet-service-mesh_tunnel.c
src/mesh/gnunet-service-mesh_tunnel.h

index aaead6c30af9c4dc7ea71e15486c18299c560c66..726d7c02510c54d1465c73d04b33045643ce3441 100644 (file)
@@ -274,7 +274,7 @@ GMCH_handle_create (struct MeshTunnel3 *t,
 /**
  * Handler for channel ack messages.
  *
- * @param t Tunnel this channel is to be created in.
+ * @param ch Channel this channel is to be created in.
  * @param msg Message.
  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
  */
@@ -286,7 +286,7 @@ GMCH_handle_ack (struct MeshChannel *ch,
 /**
  * Handler for channel destroy messages.
  *
- * @param t Tunnel this channel is to be destroyed of.
+ * @param ch Channel this channel is to be destroyed of.
  * @param msg Message.
  * @param fwd Is this FWD traffic? GNUNET_YES : GNUNET_NO;
  */
index e10db1161cb9c1bc2c0b9239c34bdfbd4cec0abb..0c07fedfef20b485a6acbb66b4fb9fea5aa603cf 100644 (file)
@@ -72,15 +72,15 @@ void
 GML_shutdown (void);
 
 /**
- * Get a chennel from a client
+ * Get a channel from a client.
  *
- * @param client the client to check
- * @param chid Channel ID
+ * @param c Client to check.
+ * @param chid Channel ID, must be local (> 0x800...).
  *
- * @return non-NULL if channel exists in the global DLL
+ * @return non-NULL if channel exists in the clients lists
  */
 struct MeshChannel *
-GML_channel_get (struct MeshClient *client, uint32_t chid);
+GML_channel_get (struct MeshClient *c, uint32_t chid);
 
 /**
  * Add a channel to a client
index 6f46796a2217a3be2d71001e0b4354ceb9e1a9da..b6a241b24e4ff44a0e09a53dbeaef969a3bb937b 100644 (file)
@@ -1156,7 +1156,6 @@ GMP_queue_unlock (struct MeshPeer *peer, struct MeshConnection *c)
  * Initialize the peer subsystem.
  *
  * @param c Configuration.
- * @param id Peer identity
  */
 void
 GMP_init (const struct GNUNET_CONFIGURATION_Handle *c)
index d0f3df14ba266f653b27b934a4a5567fdf551008..6d3c4c6e7451e13f17301fd8bc4f73546011ef5b 100644 (file)
@@ -624,7 +624,6 @@ GMT_send_queued_data (struct MeshTunnel3 *t, int fwd)
  * Initialize the tunnel subsystem.
  *
  * @param c Configuration handle.
- * @param id Peer identity.
  * @param key ECC private key, to derive all other keys and do crypto.
  */
 void
index 369713e660a86d5856c94d6403ede42e4cf60f97..81c417dbd84368034c39b8fe089c1f5015ed8047 100644 (file)
@@ -312,7 +312,7 @@ MESH_ChannelNumber
 GMT_get_next_chid (struct MeshTunnel3 *t);
 
 /**
- * Send ACK on one or more channels due to buffer in connections..
+ * Send ACK on one or more channels due to buffer in connections.
  *
  * @param t Channel which has some free buffer space.
  * @param fwd Is this for FWD traffic? (ACK goes to root)
@@ -325,7 +325,7 @@ GMT_unchoke_channels (struct MeshTunnel3 *t, int fwd);
  *
  * Iterates all connections of the tunnel and sends ACKs appropriately.
  *
- * @param ch Channel which has some free buffer space.
+ * @param t Tunnel which has some free buffer space.
  * @param fwd Is this in for FWD traffic? (ACK goes dest->root)
  */
 void