]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/import/pull-tar.h
2268912f34a3d715ccac44c306e7f3e25a1b8323
[thirdparty/systemd.git] / src / import / pull-tar.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 Copyright 2015 Lennart Poettering
6 ***/
7
8 #include "sd-event.h"
9
10 #include "import-util.h"
11 #include "macro.h"
12
13 typedef struct TarPull TarPull;
14
15 typedef void (*TarPullFinished)(TarPull *pull, int error, void *userdata);
16
17 int tar_pull_new(TarPull **pull, sd_event *event, const char *image_root, TarPullFinished on_finished, void *userdata);
18 TarPull* tar_pull_unref(TarPull *pull);
19
20 DEFINE_TRIVIAL_CLEANUP_FUNC(TarPull*, tar_pull_unref);
21
22 int tar_pull_start(TarPull *pull, const char *url, const char *local, bool force_local, ImportVerify verify, bool settings);