2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 09:58:09 +00:00
criu/images/seccomp.proto

14 lines
246 B
Protocol Buffer
Raw Permalink Normal View History

// SPDX-License-Identifier: MIT
syntax = "proto2";
message seccomp_filter {
required bytes filter = 1;
optional uint32 prev = 2;
optional uint32 flags = 3;
}
message seccomp_entry {
repeated seccomp_filter seccomp_filters = 1;
}