]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/import/pull-raw.h
grypt-util: drop two emacs modelines
[thirdparty/systemd.git] / src / import / pull-raw.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 Copyright 2014 Lennart Poettering
6 ***/
7
8 #include "sd-event.h"
9
10 #include "import-util.h"
11 #include "macro.h"
12
13 typedef struct RawPull RawPull;
14
15 typedef void (*RawPullFinished)(RawPull *pull, int error, void *userdata);
16
17 int raw_pull_new(RawPull **pull, sd_event *event, const char *image_root, RawPullFinished on_finished, void *userdata);
18 RawPull* raw_pull_unref(RawPull *pull);
19
20 DEFINE_TRIVIAL_CLEANUP_FUNC(RawPull*, raw_pull_unref);
21
22 int raw_pull_start(RawPull *pull, const char *url, const char *local, bool force_local, ImportVerify verify, bool settings, bool roothash);