summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-10-09 19:07:01 +0200
committerMS <ms@taler.net>2020-10-09 19:07:01 +0200
commit4d9bc219297df4816ba4cf5c1a452fe2e8079bbf (patch)
tree682a3e578a3451b4399e55138a8d9230b8b55985 /src
parent217f04d2a2e77ea4cbb48cd814cac145586e5a66 (diff)
downloadmerchant-4d9bc219297df4816ba4cf5c1a452fe2e8079bbf.tar.gz
merchant-4d9bc219297df4816ba4cf5c1a452fe2e8079bbf.tar.bz2
merchant-4d9bc219297df4816ba4cf5c1a452fe2e8079bbf.zip
address doxygen warnings
Diffstat (limited to 'src')
-rw-r--r--src/backend/taler-merchant-httpd.c7
-rw-r--r--src/backend/taler-merchant-httpd_exchanges.c2
-rw-r--r--src/backend/taler-merchant-httpd_post-orders-ID-abort.c3
-rw-r--r--src/backend/taler-merchant-httpd_post-orders-ID-pay.c2
-rw-r--r--src/backend/taler-merchant-httpd_private-get-orders.c2
-rw-r--r--src/backend/taler-merchant-httpd_private-get-orders.h2
-rw-r--r--src/merchant-tools/taler-merchant-setup-reserve.c2
7 files changed, 9 insertions, 11 deletions
diff --git a/src/backend/taler-merchant-httpd.c b/src/backend/taler-merchant-httpd.c
index 91c3c693..9da5f23d 100644
--- a/src/backend/taler-merchant-httpd.c
+++ b/src/backend/taler-merchant-httpd.c
@@ -264,7 +264,7 @@ payment_trigger_free (void *cls,
*
* @param order_id an order ID
* @param mpub an instance public key
- * @param key[out] set to the hash map key to use
+ * @param[out] key set to the hash map key to use
*/
static void
compute_pay_key (const char *order_id,
@@ -296,7 +296,7 @@ compute_pay_key (const char *order_id,
*
* @param session_id the session for which @a fulfillment_url matters
* @param fulfillment_url fullfillment URL of an order
- * @param key[out] set to the hash map key to use
+ * @param[out] key set to the hash map key to use
*/
static void
compute_pay_key2 (const char *session_id,
@@ -789,8 +789,6 @@ TMH_trigger_daemon ()
/**
* Function that queries MHD's select sets and
* starts the task waiting for them.
- *
- * @param daemon_handle HTTP server to prepare to run
*/
static struct GNUNET_SCHEDULER_Task *
prepare_daemon (void)
@@ -909,6 +907,7 @@ TMH_add_instance (struct TMH_MerchantInstance *mi)
*
* @param cls argument given together with the function
* pointer when the handler was registered with MHD
+ * @param connection the MHD connection to handle
* @param url the requested url
* @param method the HTTP method used (#MHD_HTTP_METHOD_GET,
* #MHD_HTTP_METHOD_PUT, etc.)
diff --git a/src/backend/taler-merchant-httpd_exchanges.c b/src/backend/taler-merchant-httpd_exchanges.c
index 8f733dae..9dc0829d 100644
--- a/src/backend/taler-merchant-httpd_exchanges.c
+++ b/src/backend/taler-merchant-httpd_exchanges.c
@@ -329,7 +329,7 @@ retry_exchange (void *cls)
* for each wire method. Stores the wire fees with the
* exchange for later use.
*
- * @param cls closure
+ * @param exchange connection to the exchange
* @param master_pub public key of the exchange
* @param wire_method name of the wire method (i.e. "iban")
* @param payto_uri full payto URI of the exchange
diff --git a/src/backend/taler-merchant-httpd_post-orders-ID-abort.c b/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
index 61ba86d1..c11ff1c8 100644
--- a/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
+++ b/src/backend/taler-merchant-httpd_post-orders-ID-abort.c
@@ -857,8 +857,7 @@ begin_transaction (struct AbortContext *ac)
* Schedules an error response in the connection on failure.
*
* @param connection HTTP connection we are receiving abortment on
- * @param root JSON upload with abortment data
- * @param ac context we use to handle the abortment
+ * @param hc context we use to handle the abortment
* @return #GNUNET_OK on success,
* #GNUNET_NO on failure (response was queued with MHD)
* #GNUNET_SYSERR on hard error (MHD connection must be dropped)
diff --git a/src/backend/taler-merchant-httpd_post-orders-ID-pay.c b/src/backend/taler-merchant-httpd_post-orders-ID-pay.c
index 7d93b4b6..e9264b3e 100644
--- a/src/backend/taler-merchant-httpd_post-orders-ID-pay.c
+++ b/src/backend/taler-merchant-httpd_post-orders-ID-pay.c
@@ -567,7 +567,7 @@ begin_transaction (struct PayContext *pc);
* @param hr HTTP response code details
* @param deposit_timestamp time when the exchange generated the deposit confirmation
* @param exchange_sig signature from the exchange over the deposit confirmation
- * @param exchange_pub_key which key did the exchange use to create the @a exchange_sig
+ * @param exchange_pub which key did the exchange use to create the @a exchange_sig
*/
static void
deposit_cb (void *cls,
diff --git a/src/backend/taler-merchant-httpd_private-get-orders.c b/src/backend/taler-merchant-httpd_private-get-orders.c
index ca27c92a..3ee08112 100644
--- a/src/backend/taler-merchant-httpd_private-get-orders.c
+++ b/src/backend/taler-merchant-httpd_private-get-orders.c
@@ -395,7 +395,7 @@ add_order (void *cls,
* @param order_id the order that changed
* @param paid is the order paid by the customer?
* @param refunded was the order refunded?
- * @param wire was the merchant paid via wire transfer?
+ * @param wired was the merchant paid via wire transfer?
* @param date execution date of the order
* @param order_serial_id serial ID of the order in the database
*/
diff --git a/src/backend/taler-merchant-httpd_private-get-orders.h b/src/backend/taler-merchant-httpd_private-get-orders.h
index 2cc94ad8..cdd88d54 100644
--- a/src/backend/taler-merchant-httpd_private-get-orders.h
+++ b/src/backend/taler-merchant-httpd_private-get-orders.h
@@ -46,7 +46,7 @@ TMH_private_get_orders (const struct TMH_RequestHandler *rh,
* @param order_id the order that changed
* @param paid is the order paid by the customer?
* @param refunded was the order refunded?
- * @param wire was the merchant paid via wire transfer?
+ * @param wired was the merchant paid via wire transfer?
* @param date execution date of the order
* @param order_serial_id serial ID of the order in the database
*/
diff --git a/src/merchant-tools/taler-merchant-setup-reserve.c b/src/merchant-tools/taler-merchant-setup-reserve.c
index 36c6d014..7286ac3c 100644
--- a/src/merchant-tools/taler-merchant-setup-reserve.c
+++ b/src/merchant-tools/taler-merchant-setup-reserve.c
@@ -61,7 +61,7 @@ static struct TALER_MERCHANT_PostReservesHandle *prh;
static struct GNUNET_CURL_Context *ctx;
/**
- * Reschedule context for #SH_ctx.
+ * Reschedule context.
*/
static struct GNUNET_CURL_RescheduleContext *rc;