mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
.. to address protobuf 3.x proto-c warnings Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
12 lines
304 B
Protocol Buffer
12 lines
304 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
message binfmt_misc_entry {
|
|
required string name = 1;
|
|
required bool enabled = 2;
|
|
required string interpreter = 3;
|
|
optional string flags = 4;
|
|
optional string extension = 5;
|
|
optional string magic = 6;
|
|
optional string mask = 7;
|
|
optional int32 offset = 8;
|
|
}
|