2020-05-08 11:36:57 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2016-07-01 21:49:54 +02:00
|
|
|
syntax = "proto2";
|
|
|
|
|
2015-01-22 18:46:00 +03:00
|
|
|
import "opts.proto";
|
2013-08-23 18:57:40 +04:00
|
|
|
|
|
|
|
message tunfile_entry {
|
|
|
|
required uint32 id = 1;
|
|
|
|
optional string netdev = 2;
|
|
|
|
optional bool detached = 3;
|
2018-03-02 15:46:45 +03:00
|
|
|
optional uint32 ns_id = 4;
|
2013-08-23 18:57:40 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
message tun_link_entry {
|
2015-01-22 18:46:00 +03:00
|
|
|
required uint32 flags = 1 [(criu).hex = true];
|
2014-02-01 12:27:00 +04:00
|
|
|
required int32 owner = 2;
|
|
|
|
required int32 group = 3;
|
|
|
|
required uint32 vnethdr = 4;
|
|
|
|
required uint32 sndbuf = 5;
|
2013-08-23 18:57:40 +04:00
|
|
|
};
|