2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 01:51:51 +00:00
criu/protobuf/netdev.proto

18 lines
288 B
Protocol Buffer
Raw Normal View History

import "tun.proto";
enum nd_type {
LOOPBACK = 1;
VETH = 2;
TUN = 3;
}
message net_device_entry {
required nd_type type = 1;
required uint32 ifindex = 2;
required uint32 mtu = 3;
required uint32 flags = 4;
required string name = 5;
optional tun_link_entry tun = 6;
}