mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-28 21:07:43 +00:00
11 lines
286 B
Protocol Buffer
11 lines
286 B
Protocol Buffer
|
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;
|
||
|
}
|