aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-05-28 13:27:50 +0000
committerChristian Grothoff <christian@grothoff.org>2012-05-28 13:27:50 +0000
commit585609670e08b923a1ebd173d0b671d0de0e1424 (patch)
tree8f9e16a925d486eda4220e9a4b02e8756a9e6e9f /src
parent7ba9eb10f99594e5a4bf5a27c4c4747fbd8cc88c (diff)
downloadgnunet-585609670e08b923a1ebd173d0b671d0de0e1424.tar.gz
gnunet-585609670e08b923a1ebd173d0b671d0de0e1424.zip
-doxygen
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_scheduler_lib.h3
-rw-r--r--src/transport/plugin_transport_udp.c2
-rw-r--r--src/transport/plugin_transport_unix.c2
-rw-r--r--src/util/scheduler.c3
4 files changed, 6 insertions, 4 deletions
diff --git a/src/include/gnunet_scheduler_lib.h b/src/include/gnunet_scheduler_lib.h
index 864d2606a..472753424 100644
--- a/src/include/gnunet_scheduler_lib.h
+++ b/src/include/gnunet_scheduler_lib.h
@@ -419,8 +419,9 @@ GNUNET_SCHEDULER_add_read_net (struct GNUNET_TIME_Relative delay,
419 * either the delay has expired or the socket operation is ready. It 419 * either the delay has expired or the socket operation is ready. It
420 * will be run with the DEFAULT priority. 420 * will be run with the DEFAULT priority.
421 * 421 *
422 * * @param delay when should this operation time out? Use 422 * @param delay when should this operation time out? Use
423 * GNUNET_TIME_UNIT_FOREVER_REL for "on shutdown" 423 * GNUNET_TIME_UNIT_FOREVER_REL for "on shutdown"
424 * @param priority priority to use for the task
424 * @param rfd read file-descriptor 425 * @param rfd read file-descriptor
425 * @param task main function of the task 426 * @param task main function of the task
426 * @param task_cls closure of task 427 * @param task_cls closure of task
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c
index 474180db5..c5a4c7b3d 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -690,7 +690,7 @@ free_session (struct Session *s)
690 * to close a session due to a disconnect or failure to 690 * to close a session due to a disconnect or failure to
691 * establish a connection. 691 * establish a connection.
692 * 692 *
693 * @param session session to close down 693 * @param s session to close down
694 */ 694 */
695static void 695static void
696disconnect_session (struct Session *s) 696disconnect_session (struct Session *s)
diff --git a/src/transport/plugin_transport_unix.c b/src/transport/plugin_transport_unix.c
index 4562d08e5..ed418b8e7 100644
--- a/src/transport/plugin_transport_unix.c
+++ b/src/transport/plugin_transport_unix.c
@@ -347,7 +347,7 @@ lookup_session (struct Plugin *plugin, struct GNUNET_PeerIdentity *sender, const
347 * to close a session due to a disconnect or failure to 347 * to close a session due to a disconnect or failure to
348 * establish a connection. 348 * establish a connection.
349 * 349 *
350 * @param session session to close down 350 * @param s session to close down
351 */ 351 */
352static void 352static void
353disconnect_session (struct Session *s) 353disconnect_session (struct Session *s)
diff --git a/src/util/scheduler.c b/src/util/scheduler.c
index 140692362..45cc02086 100644
--- a/src/util/scheduler.c
+++ b/src/util/scheduler.c
@@ -1348,8 +1348,9 @@ GNUNET_SCHEDULER_add_read_net (struct GNUNET_TIME_Relative delay,
1348 * either the delay has expired or the socket operation is ready. It 1348 * either the delay has expired or the socket operation is ready. It
1349 * will be run with the DEFAULT priority. 1349 * will be run with the DEFAULT priority.
1350 * 1350 *
1351 * * @param delay when should this operation time out? Use 1351 * @param delay when should this operation time out? Use
1352 * GNUNET_TIME_UNIT_FOREVER_REL for "on shutdown" 1352 * GNUNET_TIME_UNIT_FOREVER_REL for "on shutdown"
1353 * @param priority priority to use for the task
1353 * @param rfd read file-descriptor 1354 * @param rfd read file-descriptor
1354 * @param task main function of the task 1355 * @param task main function of the task
1355 * @param task_cls closure of task 1356 * @param task_cls closure of task