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: c64789a7f0b2cb491b04b88343e349033fe7b456 (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;
}