Welcome to mirror list, hosted at ThFree Co, Russian Federation.

opts.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18ea7b6481b6820496d7edf1090f33c17964ffc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}