aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/seccomp/hash_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-11-05 02:47:43 +0900
committerOphestra <cat@gensokyo.uk>2025-11-05 02:47:43 +0900
commitc1399f5030abde76728ba7982a7a22fd49e75359 (patch)
tree06e2a2ce11dbd7536150fd57824e406f101d50d9 /container/seccomp/hash_test.go
parent9ac63aac0cb025d1de195dbc57d0c89ebd1d7cc5 (diff)
std: rename from comp
Seccomp lookup tables are going to be relocated here, and PNR constants. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container/seccomp/hash_test.go')
-rw-r--r--container/seccomp/hash_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/container/seccomp/hash_test.go b/container/seccomp/hash_test.go
index 90bfe638..b86d49ba 100644
--- a/container/seccomp/hash_test.go
+++ b/container/seccomp/hash_test.go
@@ -4,14 +4,14 @@ import (
"crypto/sha512"
"encoding/hex"
- "hakurei.app/container/comp"
"hakurei.app/container/seccomp"
+ "hakurei.app/container/std"
)
type (
bpfPreset = struct {
seccomp.ExportFlag
- comp.FilterPreset
+ std.FilterPreset
}
bpfLookup map[bpfPreset][sha512.Size]byte
)