Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'images/sysctl.proto')
-rw-r--r--images/sysctl.proto11
1 files changed, 11 insertions, 0 deletions
diff --git a/images/sysctl.proto b/images/sysctl.proto
new file mode 100644
index 000000000..c64789a7f
--- /dev/null
+++ b/images/sysctl.proto
@@ -0,0 +1,11 @@
+enum SysctlType {
+ __CTL_STR = 5;
+ CTL_32 = 6;
+}
+
+message sysctl_entry {
+ required SysctlType type = 1;
+
+ optional int32 iarg = 2;
+ optional string sarg = 3;
+}