2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 14:25:49 +00:00

protobuf: add opts.proto

Signed-off-by: Ruslan Kuprieiev <kupruser@gmail.com>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Ruslan Kuprieiev
2015-01-19 16:10:53 +02:00
committed by Pavel Emelyanov
parent 490ca71866
commit 5feac80336

10
protobuf/opts.proto Normal file
View File

@@ -0,0 +1,10 @@
import "google/protobuf/descriptor.proto";
message CRIU_Opts {
optional bool hex = 1; // Idicate that CRIT should treat this field as hex.
}
extend google.protobuf.FieldOptions {
// Registered unique number to use for all kinds of custom options.
optional CRIU_Opts criu = 1018;
}