aboutsummaryrefslogtreecommitdiff
path: root/src/gns
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-10-18 10:04:57 +0900
committerMartin Schanzenbach <schanzen@gnunet.org>2022-10-18 10:04:57 +0900
commitc9562b8cf7a29f4ec2457cb9d9d4530c24225da1 (patch)
treefb7d0296af5537ddda7e772a46e959c8ed64fbac /src/gns
parent9173da4f8c1f4b50ccd9d61f6fa138904740ecfa (diff)
parentd748b0c920b0581ca65962f34d1f2e94c9a89926 (diff)
downloadgnunet-c9562b8cf7a29f4ec2457cb9d9d4530c24225da1.tar.gz
gnunet-c9562b8cf7a29f4ec2457cb9d9d4530c24225da1.zip
-fix conflict
Diffstat (limited to 'src/gns')
-rw-r--r--src/gns/gns_tld_api.c2
-rw-r--r--src/gns/gnunet-gns-proxy.c1
-rw-r--r--src/gns/gnunet-service-gns.c3
-rw-r--r--src/gns/nss/nss_gns.c4
-rw-r--r--src/gns/plugin_block_gns.c1
-rw-r--r--src/gns/plugin_rest_gns.c2
6 files changed, 5 insertions, 8 deletions
diff --git a/src/gns/gns_tld_api.c b/src/gns/gns_tld_api.c
index 1b711cf40..c88ce776e 100644
--- a/src/gns/gns_tld_api.c
+++ b/src/gns/gns_tld_api.c
@@ -186,7 +186,7 @@ lookup_with_public_key (struct GNUNET_GNS_LookupWithTldRequest *ltr,
186 * @param cls a `struct GNUNET_GNS_LookupWithTldRequest *` 186 * @param cls a `struct GNUNET_GNS_LookupWithTldRequest *`
187 * @param ego ego handle, NULL at the end of the iteration 187 * @param ego ego handle, NULL at the end of the iteration
188 * @param ctx context we could store data to associate with @e ego 188 * @param ctx context we could store data to associate with @e ego
189 * @param name name of the ego 189 * @param ego_name name of the ego
190 */ 190 */
191static void 191static void
192identity_zone_cb (void *cls, 192identity_zone_cb (void *cls,
diff --git a/src/gns/gnunet-gns-proxy.c b/src/gns/gnunet-gns-proxy.c
index a834c5c19..312fde293 100644
--- a/src/gns/gnunet-gns-proxy.c
+++ b/src/gns/gnunet-gns-proxy.c
@@ -3429,7 +3429,6 @@ do_s5r_read (void *cls)
3429 * Accept new incoming connections 3429 * Accept new incoming connections
3430 * 3430 *
3431 * @param cls the closure with the lsock4 or lsock6 3431 * @param cls the closure with the lsock4 or lsock6
3432 * @param tc the scheduler context
3433 */ 3432 */
3434static void 3433static void
3435do_accept (void *cls) 3434do_accept (void *cls)
diff --git a/src/gns/gnunet-service-gns.c b/src/gns/gnunet-service-gns.c
index b28236fed..6a11ec2ce 100644
--- a/src/gns/gnunet-service-gns.c
+++ b/src/gns/gnunet-service-gns.c
@@ -412,8 +412,7 @@ check_lookup (void *cls,
412 * Handle lookup requests from client 412 * Handle lookup requests from client
413 * 413 *
414 * @param cls the closure 414 * @param cls the closure
415 * @param client the client 415 * @param sh_msg the message
416 * @param message the message
417 */ 416 */
418static void 417static void
419handle_lookup (void *cls, 418handle_lookup (void *cls,
diff --git a/src/gns/nss/nss_gns.c b/src/gns/nss/nss_gns.c
index 77b4340ee..ff34cedd5 100644
--- a/src/gns/nss/nss_gns.c
+++ b/src/gns/nss/nss_gns.c
@@ -193,7 +193,7 @@ finish:
193 * @param result the result hostent 193 * @param result the result hostent
194 * @param buffer the result buffer 194 * @param buffer the result buffer
195 * @param buflen length of the buffer 195 * @param buflen length of the buffer
196 * @param errnop[out] the low-level error code to return to the application 196 * @param[out] errnop the low-level error code to return to the application
197 * @param h_errnop idk 197 * @param h_errnop idk
198 * @return a nss_status code 198 * @return a nss_status code
199 */ 199 */
@@ -225,7 +225,7 @@ _nss_gns_gethostbyname_r (const char *name,
225 * @param result the result hostent 225 * @param result the result hostent
226 * @param buffer the result buffer 226 * @param buffer the result buffer
227 * @param buflen length of the buffer 227 * @param buflen length of the buffer
228 * @param errnop[out] the low-level error code to return to the application 228 * @param[out] errnop the low-level error code to return to the application
229 * @param h_errnop idk 229 * @param h_errnop idk
230 * @return NSS_STATUS_UNAVAIL 230 * @return NSS_STATUS_UNAVAIL
231 */ 231 */
diff --git a/src/gns/plugin_block_gns.c b/src/gns/plugin_block_gns.c
index a683ecacc..75e182092 100644
--- a/src/gns/plugin_block_gns.c
+++ b/src/gns/plugin_block_gns.c
@@ -133,7 +133,6 @@ block_plugin_gns_get_key (void *cls,
133 * Function called to validate a query. 133 * Function called to validate a query.
134 * 134 *
135 * @param cls closure 135 * @param cls closure
136 * @param ctx block context
137 * @param type block type 136 * @param type block type
138 * @param query original query (hash) 137 * @param query original query (hash)
139 * @param xquery extrended query data (can be NULL, depending on type) 138 * @param xquery extrended query data (can be NULL, depending on type)
diff --git a/src/gns/plugin_rest_gns.c b/src/gns/plugin_rest_gns.c
index 3a35c9999..659b77493 100644
--- a/src/gns/plugin_rest_gns.c
+++ b/src/gns/plugin_rest_gns.c
@@ -159,7 +159,7 @@ static struct RequestHandle *requests_tail;
159 159
160/** 160/**
161 * Cleanup lookup handle 161 * Cleanup lookup handle
162 * @param handle Handle to clean up 162 * @param cls `struct RequestHandle` to clean up
163 */ 163 */
164static void 164static void
165cleanup_handle (void *cls) 165cleanup_handle (void *cls)