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

16 lines
213 B
Protocol Buffer
Raw Permalink Normal View History

// SPDX-License-Identifier: MIT
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;
}