mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-26 03:47:35 +00:00
.. to address protobuf 3.x proto-c warnings Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
14 lines
180 B
Protocol Buffer
14 lines
180 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
enum SysctlType {
|
|
CTL_STR = 5;
|
|
CTL_32 = 6;
|
|
}
|
|
|
|
message sysctl_entry {
|
|
required SysctlType type = 1;
|
|
|
|
optional int32 iarg = 2;
|
|
optional string sarg = 3;
|
|
}
|