aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-10-18 11:32:23 +0000
committerBart Polot <bart@net.in.tum.de>2013-10-18 11:32:23 +0000
commit7562e2e46e115140820f46d6ad033c9321610c3c (patch)
tree12f2edddfa3e64f9e8c5f06dcca1916fcf6def02 /src
parent566541c945f3d0f1b578c7a4bd0df8df6a7d7541 (diff)
downloadgnunet-7562e2e46e115140820f46d6ad033c9321610c3c.tar.gz
gnunet-7562e2e46e115140820f46d6ad033c9321610c3c.zip
- doxygen
Diffstat (limited to 'src')
-rw-r--r--src/mesh/gnunet-service-mesh_local.c12
-rw-r--r--src/mesh/gnunet-service-mesh_local.h6
2 files changed, 13 insertions, 5 deletions
diff --git a/src/mesh/gnunet-service-mesh_local.c b/src/mesh/gnunet-service-mesh_local.c
index 9b868124a..b310c39dd 100644
--- a/src/mesh/gnunet-service-mesh_local.c
+++ b/src/mesh/gnunet-service-mesh_local.c
@@ -767,10 +767,10 @@ GML_shutdown (void)
767 767
768 768
769/** 769/**
770 * Get a chennel from a client 770 * Get a channel from a client.
771 * 771 *
772 * @param c the client to check 772 * @param c Client to check.
773 * @param chid Channel ID, must be local (> 0x800...) 773 * @param chid Channel ID, must be local (> 0x800...).
774 * 774 *
775 * @return non-NULL if channel exists in the clients lists 775 * @return non-NULL if channel exists in the clients lists
776 */ 776 */
@@ -949,7 +949,11 @@ GML_send_ack (struct MeshClient *c, MESH_ChannelNumber id)
949/** 949/**
950 * Notify the client that a new incoming channel was created. 950 * Notify the client that a new incoming channel was created.
951 * 951 *
952 * @param ch Channel that was created. 952 * @param c Client to notify.
953 * @param id Channel ID.
954 * @param port Channel's destination port.
955 * @param opt Options (bit array).
956 * @param peer Origin peer.
953 */ 957 */
954void 958void
955GML_send_channel_create (struct MeshClient *c, 959GML_send_channel_create (struct MeshClient *c,
diff --git a/src/mesh/gnunet-service-mesh_local.h b/src/mesh/gnunet-service-mesh_local.h
index 6647057b2..e10db1161 100644
--- a/src/mesh/gnunet-service-mesh_local.h
+++ b/src/mesh/gnunet-service-mesh_local.h
@@ -162,7 +162,11 @@ GML_send_ack (struct MeshClient *c, MESH_ChannelNumber id);
162/** 162/**
163 * Notify the appropriate client that a new incoming channel was created. 163 * Notify the appropriate client that a new incoming channel was created.
164 * 164 *
165 * @param ch Channel that was created. 165 * @param c Client to notify.
166 * @param id Channel ID.
167 * @param port Channel's destination port.
168 * @param opt Options (bit array).
169 * @param peer Origin peer.
166 */ 170 */
167void 171void
168GML_send_channel_create (struct MeshClient *c, 172GML_send_channel_create (struct MeshClient *c,