diff options
Diffstat (limited to 'src/exchange')
| -rw-r--r-- | src/exchange/taler-exchange-aggregator.c | 1 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd.c | 5 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_db.c | 3 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_db.h | 4 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_payback.c | 2 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_payback.h | 2 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_refund.c | 2 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_refund.h | 2 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_responses.c | 2 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_responses.h | 2 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_validation.c | 2 | ||||
| -rw-r--r-- | src/exchange/taler-exchange-httpd_validation.h | 2 | 
12 files changed, 14 insertions, 15 deletions
| diff --git a/src/exchange/taler-exchange-aggregator.c b/src/exchange/taler-exchange-aggregator.c index 2bdb310a..e9587930 100644 --- a/src/exchange/taler-exchange-aggregator.c +++ b/src/exchange/taler-exchange-aggregator.c @@ -1117,7 +1117,6 @@ wire_prepare_cb (void *cls,   * do.   *   * @param cls NULL - * @param tc scheduler context   */  static void  run_transfers (void *cls) diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c index b40eaf3a..dbc270b4 100644 --- a/src/exchange/taler-exchange-httpd.c +++ b/src/exchange/taler-exchange-httpd.c @@ -477,8 +477,8 @@ handle_mhd_admin_request (void *cls,   * Parse the configuration to determine on which port   * or UNIX domain path we should run an HTTP service.   * - * @param type section of the configuration to parse ("exchange" or "exchange-admin") - * @param[out] port set to the port number, or 0 for none + * @param section section of the configuration to parse ("exchange" or "exchange-admin") + * @param[out] rport set to the port number, or 0 for none   * @param[out] unix_path set to the UNIX path, or NULL for none   * @param[out] unix_mode set to the mode to be used for @a unix_path   * @return #GNUNET_OK on success @@ -594,7 +594,6 @@ parse_port_config (const char *section,   * Load configuration parameters for the exchange   * server into the corresponding global variables.   * - * @param exchange_directory the exchange's directory   * @return #GNUNET_OK on success   */  static int diff --git a/src/exchange/taler-exchange-httpd_db.c b/src/exchange/taler-exchange-httpd_db.c index d7f91c89..dbaffc48 100644 --- a/src/exchange/taler-exchange-httpd_db.c +++ b/src/exchange/taler-exchange-httpd_db.c @@ -654,7 +654,7 @@ TEH_DB_execute_reserve_status (struct MHD_Connection *connection,   * @param blinded_msg_len number of bytes in @a blinded_msg   * @param h_blind hash of @a blinded_msg   * @param signature signature over the withdraw request, to be stored in DB - * @param denom_sig[out] where to write the resulting signature + * @param[out] denom_sig where to write the resulting signature   *        (used to release memory in case of transaction failure   * @return MHD result code   */ @@ -1967,6 +1967,7 @@ struct WtidTransactionContext   * @param cls our context for transmission   * @param rowid which row in the DB is the information from (for diagnostics)   * @param merchant_pub public key of the merchant (should be same for all callbacks with the same @e cls) + * @param wire_method which wire plugin was used   * @param h_wire hash of wire transfer details of the merchant (should be same for all callbacks with the same @e cls)   * @param exec_time execution time of the wire transfer (should be same for all callbacks with the same @e cls)   * @param h_proposal_data which proposal was this payment about diff --git a/src/exchange/taler-exchange-httpd_db.h b/src/exchange/taler-exchange-httpd_db.h index d2a0168d..4d894cfb 100644 --- a/src/exchange/taler-exchange-httpd_db.h +++ b/src/exchange/taler-exchange-httpd_db.h @@ -133,7 +133,7 @@ struct TEH_DB_MeltDetails   * @param session_hash hash code of the session the coins are melted into   * @param num_new_denoms number of entries in @a denom_pubs, size of y-dimension of @a commit_coin array   * @param denom_pubs array of public denomination keys for the refresh (?) - * @param coin_melt_details signatures and (residual) value of and information about the respective coin to be melted + * @param coin_melt_detail signatures and (residual) value of and information about the respective coin to be melted   * @param commit_coin 2d array of coin commitments (what the exchange is to sign   *                    once the "/refres/reveal" of cut and choose is done)   * @param transfer_pubs array of transfer public keys (what the exchange is @@ -146,7 +146,7 @@ TEH_DB_execute_refresh_melt (struct MHD_Connection *connection,                               const struct GNUNET_HashCode *session_hash,                               unsigned int num_new_denoms,                               const struct TALER_DenominationPublicKey *denom_pubs, -                             const struct TEH_DB_MeltDetails *coin_melt_details, +                             const struct TEH_DB_MeltDetails *coin_melt_detail,                               struct TALER_EXCHANGEDB_RefreshCommitCoin *const* commit_coin,                               const struct TALER_TransferPublicKeyP *transfer_pubs); diff --git a/src/exchange/taler-exchange-httpd_payback.c b/src/exchange/taler-exchange-httpd_payback.c index 7e1c7084..7c5230d5 100644 --- a/src/exchange/taler-exchange-httpd_payback.c +++ b/src/exchange/taler-exchange-httpd_payback.c @@ -141,7 +141,7 @@ verify_and_execute_payback (struct MHD_Connection *connection,  /**   * Handle a "/payback" request.  Parses the JSON, and, if successful, - * passes the JSON data to #parse_and_handle_payback_request() to + * passes the JSON data to #verify_and_execute_payback() to   * further check the details of the operation specified.  If   * everything checks out, this will ultimately lead to the "/refund"   * being executed, or rejected. diff --git a/src/exchange/taler-exchange-httpd_payback.h b/src/exchange/taler-exchange-httpd_payback.h index 4572db40..9e1fde31 100644 --- a/src/exchange/taler-exchange-httpd_payback.h +++ b/src/exchange/taler-exchange-httpd_payback.h @@ -28,7 +28,7 @@  /**   * Handle a "/payback" request.  Parses the JSON, and, if successful, - * passes the JSON data to #parse_and_handle_payback_request() to + * passes the JSON data to #verify_and_execute_payback() to   * further check the details of the operation specified.  If   * everything checks out, this will ultimately lead to the "/refund"   * being executed, or rejected. diff --git a/src/exchange/taler-exchange-httpd_refund.c b/src/exchange/taler-exchange-httpd_refund.c index 6c85c50f..0df83f45 100644 --- a/src/exchange/taler-exchange-httpd_refund.c +++ b/src/exchange/taler-exchange-httpd_refund.c @@ -97,7 +97,7 @@ verify_and_execute_refund (struct MHD_Connection *connection,  /**   * Handle a "/refund" request.  Parses the JSON, and, if successful, - * passes the JSON data to #parse_and_handle_refund_request() to + * passes the JSON data to #verify_and_execute_refund() to   * further check the details of the operation specified.  If   * everything checks out, this will ultimately lead to the "/refund"   * being executed, or rejected. diff --git a/src/exchange/taler-exchange-httpd_refund.h b/src/exchange/taler-exchange-httpd_refund.h index 894d821d..1fa52b14 100644 --- a/src/exchange/taler-exchange-httpd_refund.h +++ b/src/exchange/taler-exchange-httpd_refund.h @@ -30,7 +30,7 @@  /**   * Handle a "/refund" request.  Parses the JSON, and, if successful, - * passes the JSON data to #parse_and_handle_refund_request() to + * passes the JSON data to #verify_and_execute_refund() to   * further check the details of the operation specified.  If   * everything checks out, this will ultimately lead to the "/refund"   * being executed, or rejected. diff --git a/src/exchange/taler-exchange-httpd_responses.c b/src/exchange/taler-exchange-httpd_responses.c index 049fa8f0..1de383e3 100644 --- a/src/exchange/taler-exchange-httpd_responses.c +++ b/src/exchange/taler-exchange-httpd_responses.c @@ -80,7 +80,7 @@ TEH_RESPONSE_can_compress (struct MHD_Connection *connection)  /** - * Try to compress a response body.  Updates @a buf and @buf_size. + * Try to compress a response body.  Updates @a buf and @a buf_size.   *   * @param[in,out] buf pointer to body to compress   * @param[in,out] buf_size pointer to initial size of @a buf diff --git a/src/exchange/taler-exchange-httpd_responses.h b/src/exchange/taler-exchange-httpd_responses.h index 091d4386..a3d21e66 100644 --- a/src/exchange/taler-exchange-httpd_responses.h +++ b/src/exchange/taler-exchange-httpd_responses.h @@ -46,7 +46,7 @@ TEH_RESPONSE_add_global_headers (struct MHD_Response *response);  /** - * Try to compress a response body.  Updates @a buf and @buf_size. + * Try to compress a response body.  Updates @a buf and @a buf_size.   *   * @param[in,out] buf pointer to body to compress   * @param[in,out] buf_size pointer to initial size of @a buf diff --git a/src/exchange/taler-exchange-httpd_validation.c b/src/exchange/taler-exchange-httpd_validation.c index f8a1f7cb..5d86e7a9 100644 --- a/src/exchange/taler-exchange-httpd_validation.c +++ b/src/exchange/taler-exchange-httpd_validation.c @@ -165,7 +165,7 @@ TEH_VALIDATION_done ()   *   * @param wire the JSON wire format object   * @param ours #GNUNET_YES if the signature should match our master key - * @param[OUT] emsg set to error message if we return an error code + * @param[out] emsg set to error message if we return an error code   * @return #TALER_EC_NONE if correctly formatted; otherwise error code   */  enum TALER_ErrorCode diff --git a/src/exchange/taler-exchange-httpd_validation.h b/src/exchange/taler-exchange-httpd_validation.h index 7f239327..7d623bf5 100644 --- a/src/exchange/taler-exchange-httpd_validation.h +++ b/src/exchange/taler-exchange-httpd_validation.h @@ -48,7 +48,7 @@ TEH_VALIDATION_done (void);   *   * @param wire the JSON wire format object   * @param ours #GNUNET_YES if the signature should match our master key - * @param[OUT] emsg set to error message if we return an error code + * @param[out] emsg set to error message if we return an error code   * @return #TALER_EC_NONE if correctly formatted; otherwise error code   */  enum TALER_ErrorCode | 
