doxygen fixes
This commit is contained in:
parent
3b3af8a077
commit
dfb767a095
@ -595,24 +595,24 @@ TALER_MINT_wire (struct TALER_MINT_Handle *mint,
|
|||||||
* Cancel a wire information request. This function cannot be used
|
* Cancel a wire information request. This function cannot be used
|
||||||
* on a request handle if a response is already served for it.
|
* on a request handle if a response is already served for it.
|
||||||
*
|
*
|
||||||
* @param wire the wire information request handle
|
* @param wh the wire information request handle
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
TALER_MINT_wire_cancel (struct TALER_MINT_WireHandle *wire)
|
TALER_MINT_wire_cancel (struct TALER_MINT_WireHandle *wh)
|
||||||
{
|
{
|
||||||
if (NULL != wire->job)
|
if (NULL != wh->job)
|
||||||
{
|
{
|
||||||
MAC_job_cancel (wire->job);
|
MAC_job_cancel (wh->job);
|
||||||
wire->job = NULL;
|
wh->job = NULL;
|
||||||
}
|
}
|
||||||
if (NULL != wire->methods)
|
if (NULL != wh->methods)
|
||||||
{
|
{
|
||||||
json_decref (wire->methods);
|
json_decref (wh->methods);
|
||||||
wire->methods = NULL;
|
wh->methods = NULL;
|
||||||
}
|
}
|
||||||
GNUNET_free_non_null (wire->db.buf);
|
GNUNET_free_non_null (wh->db.buf);
|
||||||
GNUNET_free (wire->url);
|
GNUNET_free (wh->url);
|
||||||
GNUNET_free (wire);
|
GNUNET_free (wh);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -302,6 +302,7 @@ TMH_DB_execute_reserve_status (struct MHD_Connection *connection,
|
|||||||
*
|
*
|
||||||
* @param connection request we are handling
|
* @param connection request we are handling
|
||||||
* @param session database session we are using
|
* @param session database session we are using
|
||||||
|
* @param key_state key state to lookup denomination pubs
|
||||||
* @param reserve reserve to withdraw from
|
* @param reserve reserve to withdraw from
|
||||||
* @param denomination_pub public key of the denomination requested
|
* @param denomination_pub public key of the denomination requested
|
||||||
* @param dki denomination to withdraw
|
* @param dki denomination to withdraw
|
||||||
@ -1142,11 +1143,12 @@ refresh_mint_coin (struct MHD_Connection *connection,
|
|||||||
* @param session database session
|
* @param session database session
|
||||||
* @param session_hash hash identifying the refresh session
|
* @param session_hash hash identifying the refresh session
|
||||||
* @param refresh_session information about the refresh operation we are doing
|
* @param refresh_session information about the refresh operation we are doing
|
||||||
|
* @param melts array of "num_oldcoins" with information about melted coins
|
||||||
* @param denom_pubs array of "num_newcoins" denomination keys for the new coins
|
* @param denom_pubs array of "num_newcoins" denomination keys for the new coins
|
||||||
* @param ev_sigs[out] where to store generated signatures for the new coins,
|
* @param[out] ev_sigs where to store generated signatures for the new coins,
|
||||||
* array of length "num_newcoins", memory released by the
|
* array of length "num_newcoins", memory released by the
|
||||||
* caller
|
* caller
|
||||||
* @param commit_coins[out] array of length "num_newcoins" to be used for
|
* @param[out] commit_coins array of length "num_newcoins" to be used for
|
||||||
* information about the new coins from the commitment.
|
* information about the new coins from the commitment.
|
||||||
* @return MHD result code
|
* @return MHD result code
|
||||||
*/
|
*/
|
||||||
@ -1154,9 +1156,9 @@ static int
|
|||||||
execute_refresh_reveal_transaction (struct MHD_Connection *connection,
|
execute_refresh_reveal_transaction (struct MHD_Connection *connection,
|
||||||
struct TALER_MINTDB_Session *session,
|
struct TALER_MINTDB_Session *session,
|
||||||
const struct GNUNET_HashCode *session_hash,
|
const struct GNUNET_HashCode *session_hash,
|
||||||
struct TALER_MINTDB_RefreshSession *refresh_session,
|
const struct TALER_MINTDB_RefreshSession *refresh_session,
|
||||||
struct TALER_MINTDB_RefreshMelt *melts,
|
const struct TALER_MINTDB_RefreshMelt *melts,
|
||||||
struct TALER_DenominationPublicKey *denom_pubs,
|
const struct TALER_DenominationPublicKey *denom_pubs,
|
||||||
struct TALER_DenominationSignature *ev_sigs,
|
struct TALER_DenominationSignature *ev_sigs,
|
||||||
struct TALER_MINTDB_RefreshCommitCoin *commit_coins)
|
struct TALER_MINTDB_RefreshCommitCoin *commit_coins)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user