summaryrefslogtreecommitdiff
path: root/src/include/taler_curl_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-01-17 23:01:17 +0100
committerChristian Grothoff <christian@grothoff.org>2020-01-17 23:01:17 +0100
commitb322614eb212e8b35e38faf70e804a33b091bbf4 (patch)
tree3f89e85174a4ea15224846f60050bbe82cf4019e /src/include/taler_curl_lib.h
parentcd1a784f3413543b83f368344d0d660c29aecda3 (diff)
downloadexchange-b322614eb212e8b35e38faf70e804a33b091bbf4.tar.gz
exchange-b322614eb212e8b35e38faf70e804a33b091bbf4.tar.bz2
exchange-b322614eb212e8b35e38faf70e804a33b091bbf4.zip
doxygen
Diffstat (limited to 'src/include/taler_curl_lib.h')
-rw-r--r--src/include/taler_curl_lib.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/taler_curl_lib.h b/src/include/taler_curl_lib.h
index 6c90c671c..a38c0fce1 100644
--- a/src/include/taler_curl_lib.h
+++ b/src/include/taler_curl_lib.h
@@ -21,8 +21,8 @@
* @brief Helper routines shared by libtalerexchange and libtalerauditor
* @author Christian Grothoff
*/
-#ifndef TEAH_COMMON_H
-#define TEAH_COMMON_H
+#ifndef TALER_CURL_LIB_H
+#define TALER_CURL_LIB_H
#include <gnunet/gnunet_curl_lib.h>
#include "taler_json_lib.h"
@@ -33,10 +33,10 @@
#define COMPRESS_BODIES 1
/**
- * State used for #TEAL_curl_easy_post() and
- * #TEAL_curl_easy_post_finished().
+ * State used for #TALER_curl_easy_post() and
+ * #TALER_curl_easy_post_finished().
*/
-struct TEAH_PostContext
+struct TALER_CURL_PostContext
{
/**
* JSON encoding of the request to POST.
@@ -60,7 +60,7 @@ struct TEAH_PostContext
* @return #GNUNET_OK on success #GNUNET_SYSERR on failure
*/
int
-TALER_curl_easy_post (struct TEAH_PostContext *ctx,
+TALER_curl_easy_post (struct TALER_CURL_PostContext *ctx,
CURL *eh,
const json_t *body);
@@ -71,7 +71,7 @@ TALER_curl_easy_post (struct TEAH_PostContext *ctx,
* @param ctx[in] a request context (updated)
*/
void
-TALER_curl_easy_post_finished (struct TEAH_PostContext *ctx);
+TALER_curl_easy_post_finished (struct TALER_CURL_PostContext *ctx);
#endif