mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-08-01 22:33:30 +00:00
v2: fix mm.proto too Signed-off-by: Andrey Vagin <avagin@openvz.org> Acked-by: Ruslan Kuprieiev <kupruser@gmail.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
16 lines
358 B
Protocol Buffer
16 lines
358 B
Protocol Buffer
import "opts.proto";
|
|
import "fown.proto";
|
|
|
|
message tunfile_entry {
|
|
required uint32 id = 1;
|
|
optional string netdev = 2;
|
|
optional bool detached = 3;
|
|
};
|
|
|
|
message tun_link_entry {
|
|
required uint32 flags = 1 [(criu).hex = true];
|
|
required int32 owner = 2;
|
|
required int32 group = 3;
|
|
required uint32 vnethdr = 4;
|
|
required uint32 sndbuf = 5;
|
|
};
|