]> git.proxmox.com Git - systemd.git/blame - src/import/curl-util.h
New upstream version 242
[systemd.git] / src / import / curl-util.h
CommitLineData
52ad194e 1/* SPDX-License-Identifier: LGPL-2.1+ */
e735f4d4
MP
2#pragma once
3
e735f4d4 4#include <curl/curl.h>
4c89c718 5#include <sys/types.h>
e735f4d4 6
e735f4d4
MP
7#include "sd-event.h"
8
db2df898 9#include "hashmap.h"
bb4f798a 10#include "time-util.h"
db2df898 11
e735f4d4
MP
12typedef struct CurlGlue CurlGlue;
13
14struct CurlGlue {
15 sd_event *event;
16 CURLM *curl;
17 sd_event_source *timer;
18 Hashmap *ios;
19 Hashmap *translate_fds;
20
21 void (*on_finished)(CurlGlue *g, CURL *curl, CURLcode code);
22 void *userdata;
23};
24
25int curl_glue_new(CurlGlue **glue, sd_event *event);
26CurlGlue* curl_glue_unref(CurlGlue *glue);
27
28DEFINE_TRIVIAL_CLEANUP_FUNC(CurlGlue*, curl_glue_unref);
29
30int curl_glue_make(CURL **ret, const char *url, void *userdata);
31int curl_glue_add(CurlGlue *g, CURL *c);
32void curl_glue_remove_and_free(CurlGlue *g, CURL *c);
33
34struct curl_slist *curl_slist_new(const char *first, ...) _sentinel_;
35int curl_header_strdup(const void *contents, size_t sz, const char *field, char **value);
36int curl_parse_http_time(const char *t, usec_t *ret);
37
38DEFINE_TRIVIAL_CLEANUP_FUNC(CURL*, curl_easy_cleanup);
6e866b33 39DEFINE_TRIVIAL_CLEANUP_FUNC(CURL*, curl_multi_cleanup);
e735f4d4 40DEFINE_TRIVIAL_CLEANUP_FUNC(struct curl_slist*, curl_slist_free_all);