gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r30343 - gnunet/src/mesh


From: gnunet
Subject: [GNUnet-SVN] r30343 - gnunet/src/mesh
Date: Fri, 18 Oct 2013 22:17:17 +0200

Author: bartpolot
Date: 2013-10-18 22:17:17 +0200 (Fri, 18 Oct 2013)
New Revision: 30343

Modified:
   gnunet/src/mesh/gnunet-service-mesh_channel.h
   gnunet/src/mesh/gnunet-service-mesh_local.h
   gnunet/src/mesh/gnunet-service-mesh_peer.c
   gnunet/src/mesh/gnunet-service-mesh_tunnel.c
   gnunet/src/mesh/gnunet-service-mesh_tunnel.h
Log:
- doxygen


Modified: gnunet/src/mesh/gnunet-service-mesh_channel.h
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_channel.h       2013-10-18 19:51:20 UTC 
(rev 30342)
+++ gnunet/src/mesh/gnunet-service-mesh_channel.h       2013-10-18 20:17:17 UTC 
(rev 30343)
@@ -274,7 +274,7 @@
 /**
  * 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 @@
 /**
  * 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;
  */

Modified: gnunet/src/mesh/gnunet-service-mesh_local.h
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_local.h 2013-10-18 19:51:20 UTC (rev 
30342)
+++ gnunet/src/mesh/gnunet-service-mesh_local.h 2013-10-18 20:17:17 UTC (rev 
30343)
@@ -72,15 +72,15 @@
 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

Modified: gnunet/src/mesh/gnunet-service-mesh_peer.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_peer.c  2013-10-18 19:51:20 UTC (rev 
30342)
+++ gnunet/src/mesh/gnunet-service-mesh_peer.c  2013-10-18 20:17:17 UTC (rev 
30343)
@@ -1156,7 +1156,6 @@
  * Initialize the peer subsystem.
  *
  * @param c Configuration.
- * @param id Peer identity
  */
 void
 GMP_init (const struct GNUNET_CONFIGURATION_Handle *c)

Modified: gnunet/src/mesh/gnunet-service-mesh_tunnel.c
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_tunnel.c        2013-10-18 19:51:20 UTC 
(rev 30342)
+++ gnunet/src/mesh/gnunet-service-mesh_tunnel.c        2013-10-18 20:17:17 UTC 
(rev 30343)
@@ -624,7 +624,6 @@
  * 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

Modified: gnunet/src/mesh/gnunet-service-mesh_tunnel.h
===================================================================
--- gnunet/src/mesh/gnunet-service-mesh_tunnel.h        2013-10-18 19:51:20 UTC 
(rev 30342)
+++ gnunet/src/mesh/gnunet-service-mesh_tunnel.h        2013-10-18 20:17:17 UTC 
(rev 30343)
@@ -312,7 +312,7 @@
 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 @@
  *
  * 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]