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

sysctl.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b78c8f3541e2c7d4c57f0103fe50f8c1cb29f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
enum SysctlType {
	CTL_STR	= 5;
	CTL_32	= 6;
}

message sysctl_entry {
	required SysctlType type	= 1;

	optional int32 iarg		= 2;
	optional string sarg		= 3;
}