mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-24 02:29:23 +00:00
.. to address protobuf 3.x proto-c warnings Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
17 lines
357 B
Protocol Buffer
17 lines
357 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "opts.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;
|
|
};
|