criu/images/seccomp.proto
Cyrill Gorcunov 06626522d1 seccomp: Fetch seccomp flags if kernel provides
Note that there is no real usage of this flag on restore,
we simply save it in image and will make a real use
later.

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
2018-05-15 03:51:16 +03:00

11 lines
213 B
Protocol Buffer

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;
}