aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-09-08 00:06:27 +0100
committerWillow Liquorice <willow@howhill.com>2022-10-03 13:14:43 +0100
commit43dc9b3ebcd7803c8184c89ecf45b9fee6ba7d88 (patch)
tree7589a0819205d808dc7b25bbfddcfd9b2c2719be /src
parente67ee030effb3b7d8ca51721b083a4f64c54195b (diff)
downloadgnunet-43dc9b3ebcd7803c8184c89ecf45b9fee6ba7d88.tar.gz
gnunet-43dc9b3ebcd7803c8184c89ecf45b9fee6ba7d88.zip
-DOC: Documentation cleanup pass through assorted libraries (curl integration, GNSRECORD, json)
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_curl_lib.h1
-rw-r--r--src/include/gnunet_gnsrecord_lib.h3
-rw-r--r--src/include/gnunet_json_lib.h4
3 files changed, 3 insertions, 5 deletions
diff --git a/src/include/gnunet_curl_lib.h b/src/include/gnunet_curl_lib.h
index fdd05600c..ab2d82060 100644
--- a/src/include/gnunet_curl_lib.h
+++ b/src/include/gnunet_curl_lib.h
@@ -324,7 +324,6 @@ GNUNET_CURL_job_add2 (struct GNUNET_CURL_Context *ctx,
324 * @param eh curl easy handle for the request, will 324 * @param eh curl easy handle for the request, will
325 * be executed AND cleaned up 325 * be executed AND cleaned up
326 * @param job_headers extra headers to add for this request 326 * @param job_headers extra headers to add for this request
327 * @param max_reply_size largest acceptable response body
328 * @param jcc callback to invoke upon completion 327 * @param jcc callback to invoke upon completion
329 * @param jcc_cls closure for @a jcc 328 * @param jcc_cls closure for @a jcc
330 * @return NULL on error (in this case, @a eh is still released!) 329 * @return NULL on error (in this case, @a eh is still released!)
diff --git a/src/include/gnunet_gnsrecord_lib.h b/src/include/gnunet_gnsrecord_lib.h
index 4c16b26cf..357f87587 100644
--- a/src/include/gnunet_gnsrecord_lib.h
+++ b/src/include/gnunet_gnsrecord_lib.h
@@ -753,7 +753,7 @@ GNUNET_GNSRECORD_is_critical (uint32_t type);
753 * @param rd input records 753 * @param rd input records
754 * @param rd_count size of the @a rd and @a rd_public arrays 754 * @param rd_count size of the @a rd and @a rd_public arrays
755 * @param rd_public where to write the converted records 755 * @param rd_public where to write the converted records
756 * @param rd_public_count number of records written to @a rd_public 756 * @param rd_count_public number of records written to @a rd_public
757 * @param min_expiry the minimum expiration of this set 757 * @param min_expiry the minimum expiration of this set
758 * @param filter the record set filter, see GNUNET_GNSRECORD_Filter. 758 * @param filter the record set filter, see GNUNET_GNSRECORD_Filter.
759 * @param emsg the error message if something went wrong 759 * @param emsg the error message if something went wrong
@@ -769,7 +769,6 @@ GNUNET_GNSRECORD_normalize_record_set (const char *label,
769 enum GNUNET_GNSRECORD_Filter filter, 769 enum GNUNET_GNSRECORD_Filter filter,
770 char **emsg); 770 char **emsg);
771 771
772
773/** 772/**
774 * Check label for invalid characters. 773 * Check label for invalid characters.
775 * 774 *
diff --git a/src/include/gnunet_json_lib.h b/src/include/gnunet_json_lib.h
index af63c5e42..8809afb71 100644
--- a/src/include/gnunet_json_lib.h
+++ b/src/include/gnunet_json_lib.h
@@ -129,7 +129,7 @@ struct GNUNET_JSON_Specification
129 * @param root the JSON node to start the navigation at. 129 * @param root the JSON node to start the navigation at.
130 * @param spec parse specification array 130 * @param spec parse specification array
131 * @param[out] error_json_name which JSON field was problematic 131 * @param[out] error_json_name which JSON field was problematic
132 * @param[out] which index into @a spec did we encounter an error 132 * @param[out] error_line which index into @a spec did we encounter an error
133 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error 133 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
134 */ 134 */
135enum GNUNET_GenericReturnValue 135enum GNUNET_GenericReturnValue
@@ -338,7 +338,7 @@ GNUNET_JSON_spec_boolean (const char *name,
338 * Timestamp. 338 * Timestamp.
339 * 339 *
340 * @param name name of the JSON field 340 * @param name name of the JSON field
341 * @param[out] at where to store the absolute time found under @a name 341 * @param[out] t at where to store the absolute time found under @a name
342 */ 342 */
343struct GNUNET_JSON_Specification 343struct GNUNET_JSON_Specification
344GNUNET_JSON_spec_timestamp (const char *name, 344GNUNET_JSON_spec_timestamp (const char *name,