1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
5 #include "import-common.h"
6 #include "import-util.h"
8 typedef struct RawPull RawPull
;
10 typedef void (*RawPullFinished
)(RawPull
*pull
, int error
, void *userdata
);
12 int raw_pull_new(RawPull
**pull
, sd_event
*event
, const char *image_root
, RawPullFinished on_finished
, void *userdata
);
13 RawPull
* raw_pull_unref(RawPull
*pull
);
15 DEFINE_TRIVIAL_CLEANUP_FUNC(RawPull
*, raw_pull_unref
);
17 int raw_pull_start(RawPull
*pull
, const char *url
, const char *local
, uint64_t offset
, uint64_t size_max
, ImportFlags flags
, ImportVerify verify
, const char *checksum
);