aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/curl/curl.c19
-rw-r--r--src/include/gnunet_curl_lib.h11
2 files changed, 30 insertions, 0 deletions
diff --git a/src/curl/curl.c b/src/curl/curl.c
index 2d0b09d92..cdd39ab8e 100644
--- a/src/curl/curl.c
+++ b/src/curl/curl.c
@@ -448,6 +448,25 @@ download_get_result (struct DownloadBuffer *db,
448 448
449 449
450/** 450/**
451 * Add custom request header.
452 *
453 * @param ctx cURL context.
454 * @param header header string; will be given to the context AS IS.
455 * @return #GNUNET_OK if no errors occurred, #GNUNET_SYSERR otherwise.
456 */
457int
458GNUNET_CURL_append_header (struct GNUNET_CURL_Context *ctx,
459 const char *header)
460{
461 ctx->json_header = curl_slist_append (ctx->json_header,
462 header);
463 if (NULL == ctx->json_header)
464 return GNUNET_SYSERR;
465
466 return GNUNET_OK;
467}
468
469/**
451 * Run the main event loop for the Taler interaction. 470 * Run the main event loop for the Taler interaction.
452 * 471 *
453 * @param ctx the library context 472 * @param ctx the library context
diff --git a/src/include/gnunet_curl_lib.h b/src/include/gnunet_curl_lib.h
index 17e9aeea4..2b2442a52 100644
--- a/src/include/gnunet_curl_lib.h
+++ b/src/include/gnunet_curl_lib.h
@@ -99,6 +99,17 @@ GNUNET_CURL_get_select_info (struct GNUNET_CURL_Context *ctx,
99 99
100 100
101/** 101/**
102 * Add custom request header.
103 *
104 * @param ctx cURL context.
105 * @param header header string; will be given to the context AS IS.
106 * @return #GNUNET_OK if no errors occurred, #GNUNET_SYSERR otherwise.
107 */
108int
109GNUNET_CURL_append_header (struct GNUNET_CURL_Context *ctx,
110 const char *header);
111
112/**
102 * Run the main event loop for the CURL interaction. 113 * Run the main event loop for the CURL interaction.
103 * 114 *
104 * @param ctx the library context 115 * @param ctx the library context