diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/auditor_api_deposit_confirmation.c | 2 | ||||
| -rw-r--r-- | src/lib/exchange_api_deposit.c | 2 | ||||
| -rw-r--r-- | src/lib/exchange_api_payback.c | 2 | ||||
| -rw-r--r-- | src/lib/exchange_api_refresh.c | 4 | ||||
| -rw-r--r-- | src/lib/exchange_api_refund.c | 2 | ||||
| -rw-r--r-- | src/lib/exchange_api_reserve.c | 2 | ||||
| -rw-r--r-- | src/lib/exchange_api_track_transaction.c | 2 | ||||
| -rw-r--r-- | src/lib/testing_api_cmd_auditor_exec_wire_auditor.c | 2 | ||||
| -rw-r--r-- | src/lib/testing_api_cmd_bank_admin_add_incoming.c | 2 | ||||
| -rw-r--r-- | src/lib/testing_api_cmd_bank_history_credit.c | 12 | ||||
| -rw-r--r-- | src/lib/testing_api_cmd_bank_history_debit.c | 10 | ||||
| -rw-r--r-- | src/lib/testing_api_cmd_bank_transfer.c | 2 | 
12 files changed, 22 insertions, 22 deletions
| diff --git a/src/lib/auditor_api_deposit_confirmation.c b/src/lib/auditor_api_deposit_confirmation.c index 2fafb285..b1a5bacc 100644 --- a/src/lib/auditor_api_deposit_confirmation.c +++ b/src/lib/auditor_api_deposit_confirmation.c @@ -52,7 +52,7 @@ struct TALER_AUDITOR_DepositConfirmationHandle     * Context for #TEH_curl_easy_post(). Keeps the data that must     * persist for Curl to make the upload.     */ -  struct TEAH_PostContext ctx; +  struct TALER_CURL_PostContext ctx;    /**     * Handle for the request. diff --git a/src/lib/exchange_api_deposit.c b/src/lib/exchange_api_deposit.c index 280de02c..9a86bdf3 100644 --- a/src/lib/exchange_api_deposit.c +++ b/src/lib/exchange_api_deposit.c @@ -63,7 +63,7 @@ struct TALER_EXCHANGE_DepositHandle     * Context for #TEH_curl_easy_post(). Keeps the data that must     * persist for Curl to make the upload.     */ -  struct TEAH_PostContext ctx; +  struct TALER_CURL_PostContext ctx;    /**     * Handle for the request. diff --git a/src/lib/exchange_api_payback.c b/src/lib/exchange_api_payback.c index d67cbf46..b28dc137 100644 --- a/src/lib/exchange_api_payback.c +++ b/src/lib/exchange_api_payback.c @@ -52,7 +52,7 @@ struct TALER_EXCHANGE_PaybackHandle     * Context for #TEH_curl_easy_post(). Keeps the data that must     * persist for Curl to make the upload.     */ -  struct TEAH_PostContext ctx; +  struct TALER_CURL_PostContext ctx;    /**     * Denomination key of the coin. diff --git a/src/lib/exchange_api_refresh.c b/src/lib/exchange_api_refresh.c index de3285e0..adcc65e1 100644 --- a/src/lib/exchange_api_refresh.c +++ b/src/lib/exchange_api_refresh.c @@ -843,7 +843,7 @@ struct TALER_EXCHANGE_RefreshMeltHandle     * Context for #TEH_curl_easy_post(). Keeps the data that must     * persist for Curl to make the upload.     */ -  struct TEAH_PostContext ctx; +  struct TALER_CURL_PostContext ctx;    /**     * Handle for the request. @@ -1301,7 +1301,7 @@ struct TALER_EXCHANGE_RefreshRevealHandle     * Context for #TEH_curl_easy_post(). Keeps the data that must     * persist for Curl to make the upload.     */ -  struct TEAH_PostContext ctx; +  struct TALER_CURL_PostContext ctx;    /**     * Handle for the request. diff --git a/src/lib/exchange_api_refund.c b/src/lib/exchange_api_refund.c index 6f25c0ba..d45b35fd 100644 --- a/src/lib/exchange_api_refund.c +++ b/src/lib/exchange_api_refund.c @@ -52,7 +52,7 @@ struct TALER_EXCHANGE_RefundHandle     * Context for #TEH_curl_easy_post(). Keeps the data that must     * persist for Curl to make the upload.     */ -  struct TEAH_PostContext ctx; +  struct TALER_CURL_PostContext ctx;    /**     * Handle for the request. diff --git a/src/lib/exchange_api_reserve.c b/src/lib/exchange_api_reserve.c index f392544f..9934aeba 100644 --- a/src/lib/exchange_api_reserve.c +++ b/src/lib/exchange_api_reserve.c @@ -737,7 +737,7 @@ struct TALER_EXCHANGE_ReserveWithdrawHandle     * Context for #TEH_curl_easy_post(). Keeps the data that must     * persist for Curl to make the upload.     */ -  struct TEAH_PostContext ctx; +  struct TALER_CURL_PostContext ctx;    /**     * Handle for the request. diff --git a/src/lib/exchange_api_track_transaction.c b/src/lib/exchange_api_track_transaction.c index 1aac0efa..86860e6f 100644 --- a/src/lib/exchange_api_track_transaction.c +++ b/src/lib/exchange_api_track_transaction.c @@ -52,7 +52,7 @@ struct TALER_EXCHANGE_TrackTransactionHandle     * Context for #TEH_curl_easy_post(). Keeps the data that must     * persist for Curl to make the upload.     */ -  struct TEAH_PostContext ctx; +  struct TALER_CURL_PostContext ctx;    /**     * Handle for the request. diff --git a/src/lib/testing_api_cmd_auditor_exec_wire_auditor.c b/src/lib/testing_api_cmd_auditor_exec_wire_auditor.c index 41c00869..12b2344d 100644 --- a/src/lib/testing_api_cmd_auditor_exec_wire_auditor.c +++ b/src/lib/testing_api_cmd_auditor_exec_wire_auditor.c @@ -18,7 +18,7 @@  */  /** - * @file lib/testing_auditor_api_cmd_exec_wire-auditor.c + * @file lib/testing_api_cmd_auditor_exec_wire_auditor.c   * @brief run the taler-wire-auditor command   * @author Marcello Stanisci   * @author Christian Grothoff diff --git a/src/lib/testing_api_cmd_bank_admin_add_incoming.c b/src/lib/testing_api_cmd_bank_admin_add_incoming.c index bdcc65b8..c59ef85f 100644 --- a/src/lib/testing_api_cmd_bank_admin_add_incoming.c +++ b/src/lib/testing_api_cmd_bank_admin_add_incoming.c @@ -17,7 +17,7 @@    <http://www.gnu.org/licenses/>  */  /** - * @file lib/testing_api_cmd_admin_add_incoming.c + * @file lib/testing_api_cmd_bank_admin_add_incoming.c   * @brief implementation of a bank /admin/add-incoming command   * @author Christian Grothoff   * @author Marcello Stanisci diff --git a/src/lib/testing_api_cmd_bank_history_credit.c b/src/lib/testing_api_cmd_bank_history_credit.c index 2b6eb41e..bb86a9b4 100644 --- a/src/lib/testing_api_cmd_bank_history_credit.c +++ b/src/lib/testing_api_cmd_bank_history_credit.c @@ -17,8 +17,8 @@    <http://www.gnu.org/licenses/>  */  /** - * @file lib/testing_api_cmd_history.c - * @brief command to check the /history API from the bank. + * @file lib/testing_api_cmd_bank_history_credit.c + * @brief command to check the /history/incoming API from the bank.   * @author Marcello Stanisci   */  #include "platform.h" @@ -282,7 +282,7 @@ build_history (struct TALER_TESTING_Interpreter *is,                                         TALER_TESTING_UT_EXCHANGE_BANK_ACCOUNT_URL,                                         &exchange_credit_url)) )        continue; /* not an interesting event */ -    /* Seek "/history" starting row.  */ +    /* Seek "/history/incoming" starting row.  */      if ( (NULL != row_id_start) &&           (*row_id_start == *row_id) &&           (GNUNET_NO == ok) ) @@ -332,7 +332,7 @@ build_history (struct TALER_TESTING_Interpreter *is,  /** - * Check that the "/history" response matches the + * Check that the "/history/incoming" response matches the   * CMD whose offset in the list of CMDs is @a off.   *   * @param is the interpreter state. @@ -450,7 +450,7 @@ history_cb (void *cls,    {      hs->hh = NULL;      GNUNET_log (GNUNET_ERROR_TYPE_ERROR, -                "Unwanted response code from /history: %u\n", +                "Unwanted response code from /history/incoming: %u\n",                  http_status);      TALER_TESTING_interpreter_fail (is);      return GNUNET_SYSERR; @@ -549,7 +549,7 @@ history_cleanup (void *cls,    (void) cmd;    if (NULL != hs->hh)    { -    TALER_LOG_WARNING ("/history did not complete\n"); +    TALER_LOG_WARNING ("/history/incoming did not complete\n");      TALER_BANK_credit_history_cancel (hs->hh);    }    GNUNET_free (hs->account_url); diff --git a/src/lib/testing_api_cmd_bank_history_debit.c b/src/lib/testing_api_cmd_bank_history_debit.c index 6ca3942b..6b06fcd9 100644 --- a/src/lib/testing_api_cmd_bank_history_debit.c +++ b/src/lib/testing_api_cmd_bank_history_debit.c @@ -18,7 +18,7 @@  */  /**   * @file lib/testing_api_cmd_bank_history_debit.c - * @brief command to check the /history API from the bank. + * @brief command to check the /history/outgoing API from the bank.   * @author Marcello Stanisci   */  #include "platform.h" @@ -288,7 +288,7 @@ build_history (struct TALER_TESTING_Interpreter *is,                                         TALER_TESTING_UT_EXCHANGE_BASE_URL,                                         &exchange_base_url)) )        continue; /* not an event we care about */ -    /* Seek "/history" starting row.  */ +    /* Seek "/history/outgoing" starting row.  */      GNUNET_log (GNUNET_ERROR_TYPE_INFO,                  "Command %s is relevant for debit history!\n",                  cmd->label); @@ -340,7 +340,7 @@ build_history (struct TALER_TESTING_Interpreter *is,  /** - * Check that the "/history" response matches the + * Check that the "/history/outgoing" response matches the   * CMD whose offset in the list of CMDs is @a off.   *   * @param is the interpreter state. @@ -451,7 +451,7 @@ history_cb (void *cls,    {      hs->hh = NULL;      GNUNET_log (GNUNET_ERROR_TYPE_ERROR, -                "Unwanted response code from /history: %u\n", +                "Unwanted response code from /history/outgoing: %u\n",                  http_status);      TALER_TESTING_interpreter_fail (is);      return GNUNET_SYSERR; @@ -549,7 +549,7 @@ history_cleanup (void *cls,    (void) cmd;    if (NULL != hs->hh)    { -    TALER_LOG_WARNING ("/history did not complete\n"); +    TALER_LOG_WARNING ("/history/outgoing did not complete\n");      TALER_BANK_debit_history_cancel (hs->hh);    }    for (unsigned int off = 0; off<hs->total; off++) diff --git a/src/lib/testing_api_cmd_bank_transfer.c b/src/lib/testing_api_cmd_bank_transfer.c index be014812..db6b9e24 100644 --- a/src/lib/testing_api_cmd_bank_transfer.c +++ b/src/lib/testing_api_cmd_bank_transfer.c @@ -17,7 +17,7 @@    <http://www.gnu.org/licenses/>  */  /** - * @file lib/testing_api_cmd_transfer.c + * @file lib/testing_api_cmd_bank_transfer.c   * @brief implementation of a bank /transfer command   * @author Christian Grothoff   * @author Marcello Stanisci | 
