mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
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>
11 lines
213 B
Protocol Buffer
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;
|
|
}
|