2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 01:51:51 +00:00
criu/images/sysctl.proto

14 lines
180 B
Protocol Buffer
Raw Normal View History

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;
}