aboutsummaryrefslogtreecommitdiff
path: root/src/my
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-09-07 23:03:03 +0100
committerWillow Liquorice <willow@howhill.com>2022-10-03 12:54:59 +0100
commit20bd667f1d4f60730118dfc0cd56f3f9fad49330 (patch)
tree05f475f32c6feb57033eca6930e6c85162d37c62 /src/my
parent98594a4d88fe911b57505e94ab3a1a9a6219ea0e (diff)
downloadgnunet-20bd667f1d4f60730118dfc0cd56f3f9fad49330.tar.gz
gnunet-20bd667f1d4f60730118dfc0cd56f3f9fad49330.zip
-DOC: Documentation cleanup pass through CONSENSUS subsystem
Diffstat (limited to 'src/my')
-rw-r--r--src/my/my_query_helper.c14
-rw-r--r--src/my/my_result_helper.c7
2 files changed, 7 insertions, 14 deletions
diff --git a/src/my/my_query_helper.c b/src/my/my_query_helper.c
index 97ea04fd1..e44caad91 100644
--- a/src/my/my_query_helper.c
+++ b/src/my/my_query_helper.c
@@ -48,7 +48,7 @@ my_clean_query (void *cls,
48 * Function called to convert input argument into SQL parameters. 48 * Function called to convert input argument into SQL parameters.
49 * 49 *
50 * @param cls closure 50 * @param cls closure
51 * @param pq data about the query 51 * @param qp data about the query
52 * @param qbind array of parameters to initialize 52 * @param qbind array of parameters to initialize
53 * @return -1 on error 53 * @return -1 on error
54 */ 54 */
@@ -95,7 +95,7 @@ GNUNET_MY_query_param_fixed_size (const void *ptr,
95 * Function called to convert input argument into SQL parameters. 95 * Function called to convert input argument into SQL parameters.
96 * 96 *
97 * @param cls closure 97 * @param cls closure
98 * @param pq data about the query 98 * @param qp data about the query
99 * @param qbind array of parameters to initialize 99 * @param qbind array of parameters to initialize
100 * @return -1 on error 100 * @return -1 on error
101 */ 101 */
@@ -138,7 +138,7 @@ GNUNET_MY_query_param_string (const char *ptr)
138 * Function called to convert input argument into SQL parameters 138 * Function called to convert input argument into SQL parameters
139 * 139 *
140 * @param cls closure 140 * @param cls closure
141 * @param pq data about the query 141 * @param qp data about the query
142 * @param qbind array of parameters to initialize 142 * @param qbind array of parameters to initialize
143 * @return -1 on error 143 * @return -1 on error
144 */ 144 */
@@ -182,7 +182,7 @@ GNUNET_MY_query_param_uint16 (const uint16_t *x)
182 * Function called to convert input argument into SQL parameters 182 * Function called to convert input argument into SQL parameters
183 * 183 *
184 * @param cls closure 184 * @param cls closure
185 * @param pq data about the query 185 * @param qp data about the query
186 * @param qbind array of parameters to initialize 186 * @param qbind array of parameters to initialize
187 * @return -1 on error 187 * @return -1 on error
188 */ 188 */
@@ -226,7 +226,7 @@ GNUNET_MY_query_param_uint32 (const uint32_t *x)
226 * Function called to convert input argument into SQL parameters 226 * Function called to convert input argument into SQL parameters
227 * 227 *
228 * @param cls closure 228 * @param cls closure
229 * @param pq data about the query 229 * @param qp data about the query
230 * @param qbind array of parameters to initialize 230 * @param qbind array of parameters to initialize
231 * @return -1 on error 231 * @return -1 on error
232 */ 232 */
@@ -270,7 +270,7 @@ GNUNET_MY_query_param_uint64 (const uint64_t *x)
270 * Function called to convert input argument into SQL parameters 270 * Function called to convert input argument into SQL parameters
271 * 271 *
272 * @param cls closure 272 * @param cls closure
273 * @param pq data about the query 273 * @param qp data about the query
274 * @param qbind array of parameters to initialize 274 * @param qbind array of parameters to initialize
275 * @return -1 on error 275 * @return -1 on error
276 */ 276 */
@@ -322,7 +322,7 @@ GNUNET_MY_query_param_rsa_public_key (const struct
322 * Function called to convert input argument into SQL parameters 322 * Function called to convert input argument into SQL parameters
323 * 323 *
324 *@param cls closure 324 *@param cls closure
325 *@param pq data about the query 325 *@param qp data about the query
326 *@param qbind array of parameters to initialize 326 *@param qbind array of parameters to initialize
327 *@return -1 on error 327 *@return -1 on error
328 */ 328 */
diff --git a/src/my/my_result_helper.c b/src/my/my_result_helper.c
index fd810b41c..e500c0b27 100644
--- a/src/my/my_result_helper.c
+++ b/src/my/my_result_helper.c
@@ -129,13 +129,6 @@ cleanup_varsize_blob (void *cls,
129} 129}
130 130
131 131
132/**
133 * Variable-size result expected
134 *
135 * @param[out] dst where to store the result, allocated
136 * @param[out] ptr_size where to store the size of @a dst
137 * @return array entru for the result specification to use
138 */
139struct GNUNET_MY_ResultSpec 132struct GNUNET_MY_ResultSpec
140GNUNET_MY_result_spec_variable_size (void **dst, 133GNUNET_MY_result_spec_variable_size (void **dst,
141 size_t *ptr_size) 134 size_t *ptr_size)