File: inventory.proto

package info (click to toggle)
golang-github-checkpoint-restore-go-criu 7.2.0%2Bds1-4
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 1,796 kB
  • sloc: makefile: 231; ansic: 195; python: 137; sh: 110
file content (24 lines) | stat: -rw-r--r-- 539 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT

syntax = "proto2";

import "criu-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;
	optional uint64			dump_uptime	= 8;
	optional uint32			pre_dump_mode	= 9;
	optional bool			tcp_close	= 10;
	optional uint32			network_lock_method	= 11;
}