]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/import/import-tar.h
pkgconfig: define variables relative to ${prefix}/${rootprefix}/${sysconfdir}
[thirdparty/systemd.git] / src / import / import-tar.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 #include "sd-event.h"
5
6 #include "import-util.h"
7 #include "macro.h"
8
9 typedef struct TarImport TarImport;
10
11 typedef void (*TarImportFinished)(TarImport *import, int error, void *userdata);
12
13 int tar_import_new(TarImport **import, sd_event *event, const char *image_root, TarImportFinished on_finished, void *userdata);
14 TarImport* tar_import_unref(TarImport *import);
15
16 DEFINE_TRIVIAL_CLEANUP_FUNC(TarImport*, tar_import_unref);
17
18 int tar_import_start(TarImport *import, int fd, const char *local, bool force_local, bool read_only);