diff options
Diffstat (limited to 'src/mhd')
-rw-r--r-- | src/mhd/mhd_responses.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mhd/mhd_responses.c b/src/mhd/mhd_responses.c index b7ff52e66..c993436cd 100644 --- a/src/mhd/mhd_responses.c +++ b/src/mhd/mhd_responses.c @@ -148,6 +148,17 @@ TALER_MHD_make_json (const json_t *json) } +struct MHD_Response * +TALER_MHD_make_json_steal (json_t *json) +{ + struct MHD_Response *res; + + res = TALER_MHD_make_json (json); + json_decref (json); + return res; +} + + MHD_RESULT TALER_MHD_reply_json (struct MHD_Connection *connection, const json_t *json, |