mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +00:00
12 lines
163 B
Protocol Buffer
12 lines
163 B
Protocol Buffer
|
|
enum SysctlType {
|
||
|
|
__CTL_STR = 5;
|
||
|
|
CTL_32 = 6;
|
||
|
|
}
|
||
|
|
|
||
|
|
message sysctl_entry {
|
||
|
|
required SysctlType type = 1;
|
||
|
|
|
||
|
|
optional int32 iarg = 2;
|
||
|
|
optional string sarg = 3;
|
||
|
|
}
|