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

userns.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a23cbbf8769dc73857bf57e21bafa1ad4993c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: MIT

syntax = "proto2";

message uid_gid_extent {
	required uint32 first		= 1;
	required uint32 lower_first	= 2;
	required uint32 count		= 3;
}

message userns_entry {
	repeated uid_gid_extent uid_map	= 1;
	repeated uid_gid_extent gid_map = 2;
}