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: 95304a8c60d8a5ca44b6f561e7135ae3b8adc6f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: MIT

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
	optional string dict = 6;
	optional string conv = 7;
}

extend google.protobuf.FieldOptions {
	// Registered unique number to use for all kinds of custom options.
	optional CRIU_Opts criu = 1018;
}