2020-05-08 11:36:57 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2016-07-01 21:49:54 +02:00
|
|
|
syntax = "proto2";
|
|
|
|
|
2015-01-19 16:10:53 +02:00
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
|
|
|
|
message CRIU_Opts {
|
2022-03-30 18:45:16 -07:00
|
|
|
optional bool hex = 1; // Indicate that CRIT should treat this field as hex.
|
2015-01-28 17:16:00 +03:00
|
|
|
optional bool ipadd = 2; // The field is IPv4/v6 address
|
2015-09-16 16:17:17 +03:00
|
|
|
optional string flags = 3;
|
2015-12-04 15:19:00 +03:00
|
|
|
optional bool dev = 4; // Device major:minor packed
|
|
|
|
optional bool odev = 5; // ... in old format
|
2017-04-10 14:02:00 +03:00
|
|
|
optional string dict = 6;
|
2017-04-10 14:02:43 +03:00
|
|
|
optional string conv = 7;
|
2015-01-19 16:10:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
extend google.protobuf.FieldOptions {
|
|
|
|
// Registered unique number to use for all kinds of custom options.
|
|
|
|
optional CRIU_Opts criu = 1018;
|
|
|
|
}
|