mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-23 18:19:39 +00:00
.. to address protobuf 3.x proto-c warnings Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
10 lines
182 B
Protocol Buffer
10 lines
182 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
message seccomp_filter {
|
|
required bytes filter = 1;
|
|
optional uint32 prev = 2;
|
|
}
|
|
|
|
message seccomp_entry {
|
|
repeated seccomp_filter seccomp_filters = 1;
|
|
}
|