mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-27 12:04:24 +00:00
.. to address protobuf 3.x proto-c warnings Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
16 lines
491 B
Protocol Buffer
16 lines
491 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
message CRIU_Opts {
|
|
optional bool hex = 1; // Idicate that CRIT should treat this field as hex.
|
|
optional bool ipadd = 2; // The field is IPv4/v6 address
|
|
optional string flags = 3;
|
|
optional bool dev = 4; // Device major:minor packed
|
|
optional bool odev = 5; // ... in old format
|
|
}
|
|
|
|
extend google.protobuf.FieldOptions {
|
|
// Registered unique number to use for all kinds of custom options.
|
|
optional CRIU_Opts criu = 1018;
|
|
}
|