mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +00:00
.. to address protobuf 3.x proto-c warnings Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
12 lines
241 B
Protocol Buffer
12 lines
241 B
Protocol Buffer
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;
|
|
}
|