]>
| Commit | Line | Data |
|---|---|---|
| db9ecf05 | 1 | /* SPDX-License-Identifier: LGPL-2.1-or-later */ |
| b6e676ce LP |
2 | #pragma once |
| 3 | ||
| f102bc3e | 4 | #include "shared-forward.h" |
| 5183c50a | 5 | #include "import-common.h" |
| b6e676ce LP |
6 | |
| 7 | typedef struct TarImport TarImport; | |
| 8 | ||
| 9 | typedef void (*TarImportFinished)(TarImport *import, int error, void *userdata); | |
| 10 | ||
| 11 | int tar_import_new(TarImport **import, sd_event *event, const char *image_root, TarImportFinished on_finished, void *userdata); | |
| 12 | TarImport* tar_import_unref(TarImport *import); | |
| 13 | ||
| 14 | DEFINE_TRIVIAL_CLEANUP_FUNC(TarImport*, tar_import_unref); | |
| 15 | ||
| 5183c50a | 16 | int tar_import_start(TarImport *import, int fd, const char *local, ImportFlags flags); |