]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/import/curl-util.h
license: LGPL-2.1+ -> LGPL-2.1-or-later
[thirdparty/systemd.git] / src / import / curl-util.h
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
72648326
LP
2#pragma once
3
72648326 4#include <curl/curl.h>
71d35b6b 5#include <sys/types.h>
72648326 6
72648326
LP
7#include "sd-event.h"
8
07630cea 9#include "hashmap.h"
ca78ad1d 10#include "time-util.h"
07630cea 11
72648326
LP
12typedef struct CurlGlue CurlGlue;
13
14struct CurlGlue {
15 sd_event *event;
16 CURLM *curl;
17 sd_event_source *timer;
18 Hashmap *ios;
72648326
LP
19
20 void (*on_finished)(CurlGlue *g, CURL *curl, CURLcode code);
21 void *userdata;
22};
23
24int curl_glue_new(CurlGlue **glue, sd_event *event);
25CurlGlue* curl_glue_unref(CurlGlue *glue);
26
27DEFINE_TRIVIAL_CLEANUP_FUNC(CurlGlue*, curl_glue_unref);
28
29int curl_glue_make(CURL **ret, const char *url, void *userdata);
30int curl_glue_add(CurlGlue *g, CURL *c);
31void curl_glue_remove_and_free(CurlGlue *g, CURL *c);
32
33struct curl_slist *curl_slist_new(const char *first, ...) _sentinel_;
34int curl_header_strdup(const void *contents, size_t sz, const char *field, char **value);
5fa89b2c 35int curl_parse_http_time(const char *t, usec_t *ret);
72648326
LP
36
37DEFINE_TRIVIAL_CLEANUP_FUNC(CURL*, curl_easy_cleanup);
0d94088e 38DEFINE_TRIVIAL_CLEANUP_FUNC(CURL*, curl_multi_cleanup);
72648326 39DEFINE_TRIVIAL_CLEANUP_FUNC(struct curl_slist*, curl_slist_free_all);