summaryrefslogtreecommitdiffstats
path: root/src/opk/opk.h
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2023-05-05 21:47:52 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2023-05-10 05:41:10 (EDT)
commit19e086419645edd449bde992081b8ca82893ff51 (patch)
tree70555a89a966c5edd0f46923b4e8551b5166d622 /src/opk/opk.h
parentab74f60d3b8631633ff4164c57fbfb282a1aa7f3 (diff)
opk/write: Build control and data archives
Diffstat (limited to 'src/opk/opk.h')
-rw-r--r--src/opk/opk.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/opk/opk.h b/src/opk/opk.h
index afd39b6..28a6b66 100644
--- a/src/opk/opk.h
+++ b/src/opk/opk.h
@@ -42,11 +42,18 @@ struct opkg_opk_opk {
const char *data_dir;
FILE *file;
char file_buffer[8192];
+ uint64_t mtime;
+ const char *file_name;
+ char *outer_uname;
+ char *outer_gname;
struct opkg_opk_gzip *outer_gzip;
struct opkg_opk_ustar *outer_ustar;
struct opkg_opk_gzip *inner_gzip;
struct opkg_opk_ustar *inner_ustar;
int previously_printed;
+ size_t path_len;
+ char *path;
+ char *temp_file_name;
};
#endif /* OPKG_OPK_OPK_OPK_H_ */