diff options
author | Florian Dold <florian.dold@gmail.com> | 2015-12-22 11:26:10 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2015-12-22 11:26:10 +0100 |
commit | 24bfedf04e2603b263e5c28ef94b45b2643e2ab2 (patch) | |
tree | fe34fb68e41519931815c6364103135b04342bb8 /src/mint/taler-mint-httpd_responses.h | |
parent | fdf51f8c73fadca9301f53fede630a43cc33091a (diff) | |
parent | 204f732c1a408490d6d13fa36b0635ce72fd4575 (diff) |
Merge branch 'master' of ssh://taler.net/var/git/mint
Diffstat (limited to 'src/mint/taler-mint-httpd_responses.h')
-rw-r--r-- | src/mint/taler-mint-httpd_responses.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/mint/taler-mint-httpd_responses.h b/src/mint/taler-mint-httpd_responses.h index 9746ef90b..5d1523b4b 100644 --- a/src/mint/taler-mint-httpd_responses.h +++ b/src/mint/taler-mint-httpd_responses.h @@ -248,6 +248,46 @@ TMH_RESPONSE_reply_deposit_insufficient_funds (struct MHD_Connection *connection /** + * A merchant asked for details about a deposit, but + * we do not know anything about the deposit. Generate the + * 404 reply. + * + * @param connection connection to the client + * @param + * @return MHD result code + */ +int +TMH_RESPONSE_reply_deposit_unknown (struct MHD_Connection *connection, + ...); + + +/** + * A merchant asked for details about a deposit, but + * we did not execute the deposit yet. Generate a 202 reply. + * + * @param connection connection to the client + * @param + * @return MHD result code + */ +int +TMH_RESPONSE_reply_deposit_pending (struct MHD_Connection *connection, + ...); + + +/** + * A merchant asked for details about a deposit. Provide + * them. Generates the 200 reply. + * + * @param connection connection to the client + * @param + * @return MHD result code + */ +int +TMH_RESPONSE_reply_deposit_wtid (struct MHD_Connection *connection, + ...); + + +/** * Send reserve status information to client. * * @param connection connection to the client |