From 26b7afc890e23af19fe6662fd27f46b47e9feea9 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 2 Jul 2025 00:32:48 +0900 Subject: sandbox/seccomp: prepare -> export Export makes a lot more sense, and also matches the libseccomp function. Signed-off-by: Ophestra --- sandbox/seccomp/libseccomp-helper.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'sandbox/seccomp/libseccomp-helper.h') diff --git a/sandbox/seccomp/libseccomp-helper.h b/sandbox/seccomp/libseccomp-helper.h index 79a13de5..330fc99b 100644 --- a/sandbox/seccomp/libseccomp-helper.h +++ b/sandbox/seccomp/libseccomp-helper.h @@ -7,10 +7,10 @@ #endif typedef enum { - HAKUREI_PREPARE_MULTIARCH = 1 << 0, - HAKUREI_PREPARE_CAN = 1 << 1, - HAKUREI_PREPARE_BLUETOOTH = 1 << 2, -} hakurei_prepare_flag; + HAKUREI_EXPORT_MULTIARCH = 1 << 0, + HAKUREI_EXPORT_CAN = 1 << 1, + HAKUREI_EXPORT_BLUETOOTH = 1 << 2, +} hakurei_export_flag; struct hakurei_syscall_rule { int syscall; @@ -18,7 +18,7 @@ struct hakurei_syscall_rule { struct scmp_arg_cmp *arg; }; -int32_t hakurei_prepare_filter(int *ret_p, int fd, uint32_t arch, - uint32_t multiarch, - struct hakurei_syscall_rule *rules, - size_t rules_sz, hakurei_prepare_flag flags); \ No newline at end of file +int32_t hakurei_export_filter(int *ret_p, int fd, uint32_t arch, + uint32_t multiarch, + struct hakurei_syscall_rule *rules, + size_t rules_sz, hakurei_export_flag flags); \ No newline at end of file -- cgit v1.3.1