gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated: doxygen fixes


From: gnunet
Subject: [taler-exchange] branch master updated: doxygen fixes
Date: Fri, 17 Jan 2020 22:17:51 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new 646ec32a doxygen fixes
646ec32a is described below

commit 646ec32adb93e0f45fab4449278efc29d0f6e651
Author: Christian Grothoff <address@hidden>
AuthorDate: Fri Jan 17 22:17:48 2020 +0100

    doxygen fixes
---
 src/auditordb/plugin_auditordb_postgres.c   | 16 +++++------
 src/exchangedb/plugin_exchangedb_postgres.c | 42 ++++++++++++++---------------
 src/include/taler_auditordb_plugin.h        |  6 ++---
 3 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/src/auditordb/plugin_auditordb_postgres.c 
b/src/auditordb/plugin_auditordb_postgres.c
index 3434dded..0d4eea58 100644
--- a/src/auditordb/plugin_auditordb_postgres.c
+++ b/src/auditordb/plugin_auditordb_postgres.c
@@ -998,7 +998,7 @@ struct ExchangeInfoContext
  *
  * @param cls closure of type `struct ExchangeInfoContext *`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 exchange_info_cb (void *cls,
@@ -1040,8 +1040,8 @@ exchange_info_cb (void *cls,
  *
  * @param cls the @e cls of this struct with the plugin-specific state
  * @param session connection to the database
- * @param master_pub master public key of the exchange
- * @param exchange_url public (base) URL of the API of the exchange
+ * @param cb function to call with the results
+ * @param cb_cls closure for @a cb
  * @return query result status
  */
 static enum GNUNET_DB_QueryStatus
@@ -1176,7 +1176,7 @@ struct DepositConfirmationContext
  *
  * @param cls closure of type `struct DepositConfirmationContext *`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 deposit_confirmation_cb (void *cls,
@@ -1240,7 +1240,7 @@ deposit_confirmation_cb (void *cls,
  *
  * @param cls the @e cls of this struct with the plugin-specific state
  * @param session connection to the database
- * @param master_pub for which exchange do we want to get deposit confirmations
+ * @param master_public_key for which exchange do we want to get deposit 
confirmations
  * @param start_id row/serial ID where to start the iteration (0 from
  *                  the start, exclusive, i.e. serial_ids must start from 1)
  * @param cb function to call with results
@@ -1373,7 +1373,7 @@ struct DenominationInfoContext
  *
  * @param cls closure of type `struct DenominationInfoContext *`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 denomination_info_cb (void *cls,
@@ -2844,7 +2844,7 @@ struct HistoricDenomRevenueContext
  *
  * @param cls closure of type `struct HistoricRevenueContext *`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 historic_denom_revenue_cb (void *cls,
@@ -3005,7 +3005,7 @@ struct HistoricReserveRevenueContext
  *
  * @param cls closure of type `struct HistoricRevenueContext *`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 historic_reserve_revenue_cb (void *cls,
diff --git a/src/exchangedb/plugin_exchangedb_postgres.c 
b/src/exchangedb/plugin_exchangedb_postgres.c
index edccfa4d..3958117a 100644
--- a/src/exchangedb/plugin_exchangedb_postgres.c
+++ b/src/exchangedb/plugin_exchangedb_postgres.c
@@ -2847,7 +2847,7 @@ struct MatchingDepositContext
  *
  * @param cls closure of type `struct MatchingDepositContext *`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 match_deposit_cb (void *cls,
@@ -3277,7 +3277,7 @@ struct SelectRefundContext
  *
  * @param cls closure of type `struct SelectRefundContext *`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 get_refunds_cb (void *cls,
@@ -3588,7 +3588,7 @@ struct GetRevealContext
  *
  * @param cls closure of type `struct GetRevealContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 add_revealed_coins (void *cls,
@@ -3823,7 +3823,7 @@ free_link_data_list (void *cls,
  *
  * @param cls closure of type `struct LinkDataContext *`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 add_ldl (void *cls,
@@ -3981,7 +3981,7 @@ struct CoinHistoryContext
  *
  * @param cls closure of type `struct CoinHistoryContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 add_coin_deposit (void *cls,
@@ -4052,7 +4052,7 @@ add_coin_deposit (void *cls,
  *
  * @param cls closure of type `struct CoinHistoryContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 add_coin_melt (void *cls,
@@ -4112,7 +4112,7 @@ add_coin_melt (void *cls,
  *
  * @param cls closure of type `struct CoinHistoryContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 add_coin_refund (void *cls,
@@ -4175,7 +4175,7 @@ add_coin_refund (void *cls,
  *
  * @param cls closure of type `struct CoinHistoryContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 add_old_coin_payback (void *cls,
@@ -4242,7 +4242,7 @@ add_old_coin_payback (void *cls,
  *
  * @param cls closure of type `struct CoinHistoryContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 add_coin_payback (void *cls,
@@ -4303,7 +4303,7 @@ add_coin_payback (void *cls,
  *
  * @param cls closure of type `struct CoinHistoryContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 add_coin_payback_refresh (void *cls,
@@ -4511,7 +4511,7 @@ struct WireTransferResultContext
  *
  * @param cls closure of type `struct WireTransferResultContext *`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 handle_wt_result (void *cls,
@@ -4924,7 +4924,7 @@ struct ExpiredReserveContext
  *
  * @param cls closure
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 reserve_expired_cb (void *cls,
@@ -5410,7 +5410,7 @@ struct DepositSerialContext
  *
  * @param cls closure of type `struct DepositSerialContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 deposit_serial_helper_cb (void *cls,
@@ -5561,7 +5561,7 @@ struct RefreshsSerialContext
  *
  * @param cls closure of type `struct RefreshsSerialContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 refreshs_serial_helper_cb (void *cls,
@@ -5701,7 +5701,7 @@ struct RefundsSerialContext
  *
  * @param cls closure of type `struct RefundsSerialContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 refunds_serial_helper_cb (void *cls,
@@ -5839,7 +5839,7 @@ struct ReservesInSerialContext
  *
  * @param cls closure of type `struct ReservesInSerialContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 reserves_in_serial_helper_cb (void *cls,
@@ -6023,7 +6023,7 @@ struct ReservesOutSerialContext
  *
  * @param cls closure of type `struct ReservesOutSerialContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 reserves_out_serial_helper_cb (void *cls,
@@ -6163,7 +6163,7 @@ struct WireOutSerialContext
  *
  * @param cls closure of type `struct WireOutSerialContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 wire_out_serial_helper_cb (void *cls,
@@ -6343,7 +6343,7 @@ struct PaybackSerialContext
  *
  * @param cls closure of type `struct PaybackSerialContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 payback_serial_helper_cb (void *cls,
@@ -6493,7 +6493,7 @@ struct PaybackRefreshSerialContext
  *
  * @param cls closure of type `struct PaybackRefreshSerialContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 payback_refresh_serial_helper_cb (void *cls,
@@ -6644,7 +6644,7 @@ struct ReserveClosedSerialContext
  *
  * @param cls closure of type `struct ReserveClosedSerialContext`
  * @param result the postgres result
- * @param num_result the number of results in @a result
+ * @param num_results the number of results in @a result
  */
 static void
 reserve_closed_serial_helper_cb (void *cls,
diff --git a/src/include/taler_auditordb_plugin.h 
b/src/include/taler_auditordb_plugin.h
index 0ce1d229..4e444a8a 100644
--- a/src/include/taler_auditordb_plugin.h
+++ b/src/include/taler_auditordb_plugin.h
@@ -534,8 +534,8 @@ struct TALER_AUDITORDB_Plugin
    *
    * @param cls the @e cls of this struct with the plugin-specific state
    * @param session connection to the database
-   * @param master_pub master public key of the exchange
-   * @param exchange_url public (base) URL of the API of the exchange
+   * @param cb function to call with the results
+   * @param cb_cls closure for @a cb
    * @return query result status
    */
   enum GNUNET_DB_QueryStatus
@@ -579,7 +579,7 @@ struct TALER_AUDITORDB_Plugin
    *
    * @param cls the @e cls of this struct with the plugin-specific state
    * @param session connection to the database
-   * @param master_pub for which exchange do we want to get deposit 
confirmations
+   * @param master_public_key for which exchange do we want to get deposit 
confirmations
    * @param start_id row/serial ID where to start the iteration (0 from
    *                  the start, exclusive, i.e. serial_ids must start from 1)
    * @param cb function to call with results

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]