aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-05 22:40:56 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-05 22:40:56 +0000
commit2315ef124c25961fc88eadbf6b9d396de5d8f992 (patch)
treea7754822a32082cba386d0006b34280c1cd78358 /src
parent75d1e5a653155827bc49e84b8e9333715f7dea31 (diff)
downloadgnunet-2315ef124c25961fc88eadbf6b9d396de5d8f992.tar.gz
gnunet-2315ef124c25961fc88eadbf6b9d396de5d8f992.zip
-doxygen
Diffstat (limited to 'src')
-rw-r--r--src/conversation/gnunet-conversation.c6
-rw-r--r--src/conversation/gnunet-service-conversation.c2
-rw-r--r--src/fs/fs_file_information.c3
-rw-r--r--src/include/gnunet_fs_service.h3
-rw-r--r--src/include/gnunet_namestore_service.h2
-rw-r--r--src/include/gnunet_revocation_service.h2
-rw-r--r--src/namestore/namestore_api_common.c2
-rw-r--r--src/revocation/revocation_api.c2
8 files changed, 8 insertions, 14 deletions
diff --git a/src/conversation/gnunet-conversation.c b/src/conversation/gnunet-conversation.c
index ce8a50a62..ad91d3007 100644
--- a/src/conversation/gnunet-conversation.c
+++ b/src/conversation/gnunet-conversation.c
@@ -354,7 +354,7 @@ struct VoipCommand
354/** 354/**
355 * Action function to print help for the command shell. 355 * Action function to print help for the command shell.
356 * 356 *
357 * @param arguments arguments given to the command 357 * @param args arguments given to the command
358 */ 358 */
359static void 359static void
360do_help (const char *args); 360do_help (const char *args);
@@ -375,7 +375,7 @@ do_quit (const char *args)
375/** 375/**
376 * Handler for unknown command. 376 * Handler for unknown command.
377 * 377 *
378 * @param args arguments given to the command 378 * @param msg arguments given to the command
379 */ 379 */
380static void 380static void
381do_unknown (const char *msg) 381do_unknown (const char *msg)
@@ -389,7 +389,7 @@ do_unknown (const char *msg)
389/** 389/**
390 * Initiating a new call 390 * Initiating a new call
391 * 391 *
392 * @param args arguments given to the command 392 * @param arg arguments given to the command
393 */ 393 */
394static void 394static void
395do_call (const char *arg) 395do_call (const char *arg)
diff --git a/src/conversation/gnunet-service-conversation.c b/src/conversation/gnunet-service-conversation.c
index 4e2b1455d..3b610c007 100644
--- a/src/conversation/gnunet-service-conversation.c
+++ b/src/conversation/gnunet-service-conversation.c
@@ -527,7 +527,7 @@ handle_client_call_message (void *cls,
527 * @param cls the `struct Line` we are transmitting for 527 * @param cls the `struct Line` we are transmitting for
528 * @param size number of bytes available in @a buf 528 * @param size number of bytes available in @a buf
529 * @param buf where to copy the data 529 * @param buf where to copy the data
530 * @return number of bytes copied to @buf 530 * @return number of bytes copied to @a buf
531 */ 531 */
532static size_t 532static size_t
533transmit_line_audio (void *cls, 533transmit_line_audio (void *cls,
diff --git a/src/fs/fs_file_information.c b/src/fs/fs_file_information.c
index ad3dda05b..1e997cfab 100644
--- a/src/fs/fs_file_information.c
+++ b/src/fs/fs_file_information.c
@@ -273,9 +273,6 @@ GNUNET_FS_file_information_is_directory (const struct GNUNET_FS_FileInformation
273 273
274/** 274/**
275 * Create an entry for an empty directory in a publish-structure. 275 * Create an entry for an empty directory in a publish-structure.
276 * This function should be used by applications for which the
277 * use of "GNUNET_FS_file_information_create_from_directory"
278 * is not appropriate.
279 * 276 *
280 * @param h handle to the file sharing subsystem 277 * @param h handle to the file sharing subsystem
281 * @param client_info initial value for the client-info value for this entry 278 * @param client_info initial value for the client-info value for this entry
diff --git a/src/include/gnunet_fs_service.h b/src/include/gnunet_fs_service.h
index 3a3228a6e..dbd885353 100644
--- a/src/include/gnunet_fs_service.h
+++ b/src/include/gnunet_fs_service.h
@@ -1841,9 +1841,6 @@ GNUNET_FS_file_information_create_from_reader (struct GNUNET_FS_Handle *h,
1841 1841
1842/** 1842/**
1843 * Create an entry for an empty directory in a publish-structure. 1843 * Create an entry for an empty directory in a publish-structure.
1844 * This function should be used by applications for which the
1845 * use of #GNUNET_FS_file_information_create_from_directory
1846 * is not appropriate.
1847 * 1844 *
1848 * @param h handle to the file sharing subsystem 1845 * @param h handle to the file sharing subsystem
1849 * @param client_info initial client-info value for this entry 1846 * @param client_info initial client-info value for this entry
diff --git a/src/include/gnunet_namestore_service.h b/src/include/gnunet_namestore_service.h
index c296d5eec..adc1a7e1d 100644
--- a/src/include/gnunet_namestore_service.h
+++ b/src/include/gnunet_namestore_service.h
@@ -568,7 +568,7 @@ GNUNET_NAMESTORE_string_to_value (uint32_t type,
568/** 568/**
569 * Convert a type name (i.e. "AAAA") to the corresponding number. 569 * Convert a type name (i.e. "AAAA") to the corresponding number.
570 * 570 *
571 * @param typename name to convert 571 * @param dns_typename name to convert
572 * @return corresponding number, UINT32_MAX on error 572 * @return corresponding number, UINT32_MAX on error
573 */ 573 */
574uint32_t 574uint32_t
diff --git a/src/include/gnunet_revocation_service.h b/src/include/gnunet_revocation_service.h
index 0cbe0ea14..1df44b066 100644
--- a/src/include/gnunet_revocation_service.h
+++ b/src/include/gnunet_revocation_service.h
@@ -104,7 +104,7 @@ struct GNUNET_REVOCATION_Handle;
104 * (called with `is_valid` being #GNUNET_NO if 104 * (called with `is_valid` being #GNUNET_NO if
105 * the revocation worked). 105 * the revocation worked).
106 * @param func_cls closure to pass to @a func 106 * @param func_cls closure to pass to @a func
107 * @return handle to use in #GNUNET_REVOCATION_cancel to stop REVOCATION from invoking the callback 107 * @return handle to use in #GNUNET_REVOCATION_revoke_cancel to stop REVOCATION from invoking the callback
108 */ 108 */
109struct GNUNET_REVOCATION_Handle * 109struct GNUNET_REVOCATION_Handle *
110GNUNET_REVOCATION_revoke (const struct GNUNET_CONFIGURATION_Handle *cfg, 110GNUNET_REVOCATION_revoke (const struct GNUNET_CONFIGURATION_Handle *cfg,
diff --git a/src/namestore/namestore_api_common.c b/src/namestore/namestore_api_common.c
index ca5d8072f..5cadf8997 100644
--- a/src/namestore/namestore_api_common.c
+++ b/src/namestore/namestore_api_common.c
@@ -1129,7 +1129,7 @@ static struct {
1129/** 1129/**
1130 * Convert a type name (i.e. "AAAA") to the corresponding number. 1130 * Convert a type name (i.e. "AAAA") to the corresponding number.
1131 * 1131 *
1132 * @param typename name to convert 1132 * @param dns_typename name to convert
1133 * @return corresponding number, UINT32_MAX on error 1133 * @return corresponding number, UINT32_MAX on error
1134 */ 1134 */
1135uint32_t 1135uint32_t
diff --git a/src/revocation/revocation_api.c b/src/revocation/revocation_api.c
index 55a130202..109d4afc5 100644
--- a/src/revocation/revocation_api.c
+++ b/src/revocation/revocation_api.c
@@ -160,7 +160,7 @@ struct GNUNET_REVOCATION_Handle
160 * (called with `is_valid` being #GNUNET_NO if 160 * (called with `is_valid` being #GNUNET_NO if
161 * the revocation worked). 161 * the revocation worked).
162 * @param func_cls closure to pass to @a func 162 * @param func_cls closure to pass to @a func
163 * @return handle to use in #GNUNET_REVOCATION_cancel to stop REVOCATION from invoking the callback 163 * @return handle to use in #GNUNET_REVOCATION_revoke_cancel to stop REVOCATION from invoking the callback
164 */ 164 */
165struct GNUNET_REVOCATION_Handle * 165struct GNUNET_REVOCATION_Handle *
166GNUNET_REVOCATION_revoke (const struct GNUNET_CONFIGURATION_Handle *cfg, 166GNUNET_REVOCATION_revoke (const struct GNUNET_CONFIGURATION_Handle *cfg,