summaryrefslogtreecommitdiff
path: root/client.c
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-11-14 11:10:43 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-11-14 11:10:43 +0800
commit8fe15035d1d08e2e628be26f73044baa58e459c4 (patch)
treecd5a7aca507851a8c99fa64adeaee5b250deeed9 /client.c
parentddeb72bd001a0486d11c76bda995bebedf85f509 (diff)
One handle for every thread
See libcurl-tutorial(3) manual page, "Handle the Easy libcurl".
Diffstat (limited to 'client.c')
-rw-r--r--client.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/client.c b/client.c
index b46f973..d7c8f70 100644
--- a/client.c
+++ b/client.c
@@ -1,8 +1,5 @@
#include <stdlib.h>
#include <string.h>
-#ifndef __EMSCRIPTEN__
-#include <curl/curl.h>
-#endif
#include "request.h"
#include "icclient.h"
@@ -11,7 +8,7 @@ char *image_dir;
emscripten_fetch_attr_t attr;
#else
char *sampleurl;
-CURL *curl;
+char *cainfo = NULL;
#endif
extern void handle_results(icclient_response *);
@@ -31,14 +28,10 @@ void icclient_init(const char *url, const char *dir, const char *certificate)
if (append)
strcat(sampleurl, "/");
curl_global_init(CURL_GLOBAL_SSL);
- curl = curl_easy_init();
- curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
- curl_easy_setopt(curl, CURLOPT_COOKIEFILE, "");
- if (certificate)
- curl_easy_setopt(curl, CURLOPT_CAINFO, certificate);
-#ifdef DEBUG
- curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
-#endif
+ if (certificate) {
+ cainfo = malloc(strlen(certificate) + 1);
+ strcpy(cainfo, certificate);
+ }
#endif
}
@@ -98,6 +91,7 @@ void icclient_free_response(icclient_response *response)
emscripten_fetch_close(response);
#else
free(response->data);
+ curl_easy_cleanup(response->curl);
free(response);
#endif
}
@@ -106,8 +100,8 @@ void icclient_cleanup()
{
free(image_dir);
#ifndef __EMSCRIPTEN__
+ free(cainfo);
free(sampleurl);
- curl_easy_cleanup(curl);
curl_global_cleanup();
#endif
}