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

inventory.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a107bb11fe9302ae528f8ce0a17245c81a4069d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import "core.proto";

enum lsmtype {
	NO_LSM		= 0;
	SELINUX		= 1;
	APPARMOR	= 2;
}

message inventory_entry {
	required uint32			img_version	= 1;
	optional bool			fdinfo_per_id	= 2;
	optional task_kobj_ids_entry	root_ids	= 3;
	optional bool			ns_per_id	= 4;
	optional uint32			root_cg_set	= 5;
	optional lsmtype		lsmtype		= 6;
}