aboutsummaryrefslogtreecommitdiff
path: root/src/fs
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/gnunet-fs-gtk_anonymity-widgets.c2
-rw-r--r--src/fs/gnunet-fs-gtk_anonymity-widgets.h2
-rw-r--r--src/fs/gnunet-fs-gtk_common.c4
-rw-r--r--src/fs/gnunet-fs-gtk_common.h24
4 files changed, 16 insertions, 16 deletions
diff --git a/src/fs/gnunet-fs-gtk_anonymity-widgets.c b/src/fs/gnunet-fs-gtk_anonymity-widgets.c
index 72ada5fa..e52f8a1b 100644
--- a/src/fs/gnunet-fs-gtk_anonymity-widgets.c
+++ b/src/fs/gnunet-fs-gtk_anonymity-widgets.c
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/fs/gnunet-fs-gtk_anonymtiy-widgets.c 22 * @file src/fs/gnunet-fs-gtk_anonymity-widgets.c
23 * @author Christian Grothoff 23 * @author Christian Grothoff
24 * @brief operations to manage user's anonymity level selections 24 * @brief operations to manage user's anonymity level selections
25 */ 25 */
diff --git a/src/fs/gnunet-fs-gtk_anonymity-widgets.h b/src/fs/gnunet-fs-gtk_anonymity-widgets.h
index b5770fa4..410b11d6 100644
--- a/src/fs/gnunet-fs-gtk_anonymity-widgets.h
+++ b/src/fs/gnunet-fs-gtk_anonymity-widgets.h
@@ -19,7 +19,7 @@
19*/ 19*/
20 20
21/** 21/**
22 * @file src/fs/gnunet-fs-gtk_anonymtiy-widgets.h 22 * @file src/fs/gnunet-fs-gtk_anonymity-widgets.h
23 * @author Christian Grothoff 23 * @author Christian Grothoff
24 * @brief operations to manage user's anonymity level selections 24 * @brief operations to manage user's anonymity level selections
25 */ 25 */
diff --git a/src/fs/gnunet-fs-gtk_common.c b/src/fs/gnunet-fs-gtk_common.c
index 4d72dd55..c8570833 100644
--- a/src/fs/gnunet-fs-gtk_common.c
+++ b/src/fs/gnunet-fs-gtk_common.c
@@ -29,8 +29,8 @@
29#include "gnunet-fs-gtk_event-handler.h" 29#include "gnunet-fs-gtk_event-handler.h"
30 30
31/** 31/**
32 * Converts metadata specified by @data of size @data_len 32 * Converts metadata specified by @a data of size @a data_len
33 * and saved in format @format to UTF-8 encoded string. 33 * and saved in format @a format to UTF-8 encoded string.
34 * Works only for C-string and UTF8 metadata formats 34 * Works only for C-string and UTF8 metadata formats
35 * (returns NULL for everything else). 35 * (returns NULL for everything else).
36 * Verifies UTF-8 strings. 36 * Verifies UTF-8 strings.
diff --git a/src/fs/gnunet-fs-gtk_common.h b/src/fs/gnunet-fs-gtk_common.h
index cab261b2..a50367e5 100644
--- a/src/fs/gnunet-fs-gtk_common.h
+++ b/src/fs/gnunet-fs-gtk_common.h
@@ -67,12 +67,12 @@ GNUNET_FS_GTK_get_expiration_time (GtkSpinButton * spin);
67 67
68 68
69/** 69/**
70 * mmap the given file and run the GNUNET_FS_directory_list_contents 70 * mmap the given file and run the #GNUNET_FS_directory_list_contents
71 * function on it. 71 * function on it.
72 * 72 *
73 * @param filename name with the directory 73 * @param filename name with the directory
74 * @param dep function to call on each entry 74 * @param dep function to call on each entry
75 * @param dep_cls closure for 'dep' 75 * @param dep_cls closure for @a dep
76 * @return GNUNET_OK on success 76 * @return GNUNET_OK on success
77 */ 77 */
78int 78int
@@ -106,17 +106,17 @@ GNUNET_FS_GTK_add_meta_data_to_list_store (void *cls, const char *plugin_name,
106 106
107 107
108/** 108/**
109 * Converts metadata specified by #data of size #data_len 109 * Converts metadata specified by @a data of size @a data_len
110 * and saved in format #format to UTF-8 encoded string. 110 * and saved in format @a format to UTF-8 encoded string.
111 * Works only for C-string and UTF8 metadata formats 111 * Works only for C-string and UTF8 metadata formats
112 * (returns NULL for everything else). 112 * (returns NULL for everything else).
113 * Verifies UTF-8 strings. 113 * Verifies UTF-8 strings.
114 * 114 *
115 * @param format format of the #data 115 * @param format format of the @a data
116 * @param data data to convert 116 * @param data data to convert
117 * @param data_len length of the data buffer (in bytes) 117 * @param data_len length of the @a data buffer (in bytes)
118 * @return NULL if can't be converted, allocated string otherwise, 118 * @return NULL if can't be converted, allocated string otherwise,
119 * freeable with GNUNET_free* (). 119 * freeable with GNUNET_free().
120 */ 120 */
121char * 121char *
122GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format, 122GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format,
@@ -129,13 +129,13 @@ GNUNET_FS_GTK_dubious_meta_to_utf8 (enum EXTRACTOR_MetaFormat format,
129 * the respective meta data. 129 * the respective meta data.
130 * 130 *
131 * @param meta meta data to inspect 131 * @param meta meta data to inspect
132 * @param is_a_dup is set to GNUNET_YES if the result is a dup, and there was 132 * @param is_a_dup is set to #GNUNET_YES if the result is a dup, and there was
133 * no description to be found. GNUNET_NO otherwise. 133 * no description to be found. #GNUNET_NO otherwise.
134 * @return description of the result in utf-8, never NULL 134 * @return description of the result in utf-8, never NULL
135 */ 135 */
136char * 136char *
137GNUNET_FS_GTK_get_description_from_metadata ( 137GNUNET_FS_GTK_get_description_from_metadata (const struct GNUNET_CONTAINER_MetaData *meta,
138 const struct GNUNET_CONTAINER_MetaData *meta, int *is_a_dup); 138 int *is_a_dup);
139 139
140 140
141/** 141/**
@@ -155,7 +155,7 @@ GNUNET_FS_GTK_handle_uri (const struct GNUNET_FS_Uri *uri,
155 * 155 *
156 * @param rr row reference 156 * @param rr row reference
157 * @param iter pointer to an iter structure to fill 157 * @param iter pointer to an iter structure to fill
158 * @return GNUNET_OK if iter was filled, GNUNET_SYSERR otherwise 158 * @return #GNUNET_OK if iter was filled, #GNUNET_SYSERR otherwise
159 */ 159 */
160int 160int
161GNUNET_GTK_get_iter_from_reference (GtkTreeRowReference *rr, 161GNUNET_GTK_get_iter_from_reference (GtkTreeRowReference *rr,