diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-03-28 15:42:07 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-03-28 15:42:07 +0100 |
commit | eca4f1a8fe52d463b6b87d19c245e7aa02197476 (patch) | |
tree | 2340cf88788df283b8b4b9be99984939d9943805 /src/mint-lib/mint_api.c | |
parent | c2fd4896a69a2404fc8b468da2cb6161db97bb3d (diff) |
-doxygen fixes
Diffstat (limited to 'src/mint-lib/mint_api.c')
-rw-r--r-- | src/mint-lib/mint_api.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mint-lib/mint_api.c b/src/mint-lib/mint_api.c index 24d617f56..b3ee34d15 100644 --- a/src/mint-lib/mint_api.c +++ b/src/mint-lib/mint_api.c @@ -16,7 +16,7 @@ */ /** - * @file mint/mint_api.c + * @file mint-lib/mint_api.c * @brief Implementation of the client interface to mint's HTTP API * @author Sree Harsha Totakura <sreeharsha@totakura.in> */ @@ -908,7 +908,7 @@ download (char *bufptr, size_t size, size_t nitems, void *cls) * @param ctx the context * @param hostname the hostname of the mint * @param port the point where the mint's HTTP service is running. - * @param mint_key the offline master public key of the mint. + * @param master_key the offline master public key of the mint. * This is used to verify the responses of the mint. * @return the mint handle; NULL upon error */ @@ -916,7 +916,7 @@ struct TALER_MINT_Handle * TALER_MINT_connect (struct TALER_MINT_Context *ctx, const char *hostname, uint16_t port, - const struct TALER_MasterPublicKeyP *mint_key) + const struct TALER_MasterPublicKeyP *master_key) { struct TALER_MINT_Handle *mint; @@ -937,6 +937,7 @@ TALER_MINT_connect (struct TALER_MINT_Context *ctx, return mint; } + /** * Disconnect from the mint * @@ -1064,7 +1065,7 @@ TALER_MINT_deposit_submit_json (struct TALER_MINT_Handle *mint, * Cancel a deposit permission request. This function cannot be used on a * request handle if a response is already served for it. * - * @param the deposit permission request handle + * @param deposit the deposit permission request handle */ void TALER_MINT_deposit_submit_cancel (struct TALER_MINT_DepositHandle *deposit) |