]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/import/import-tar.h
Merge pull request #12508 from keszybz/no-root-checks
[thirdparty/systemd.git] / src / import / import-tar.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
b6e676ce
LP
2#pragma once
3
b6e676ce 4#include "sd-event.h"
71d35b6b 5
b6e676ce 6#include "import-util.h"
71d35b6b 7#include "macro.h"
b6e676ce
LP
8
9typedef struct TarImport TarImport;
10
11typedef void (*TarImportFinished)(TarImport *import, int error, void *userdata);
12
13int tar_import_new(TarImport **import, sd_event *event, const char *image_root, TarImportFinished on_finished, void *userdata);
14TarImport* tar_import_unref(TarImport *import);
15
16DEFINE_TRIVIAL_CLEANUP_FUNC(TarImport*, tar_import_unref);
17
18int tar_import_start(TarImport *import, int fd, const char *local, bool force_local, bool read_only);