mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-27 12:04:24 +00:00
Only support the lo device. This is not final yet (much more stuff is to be handled for a link) but is rather a skeleton showing how to do it and letting us check the LXC container early. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
11 lines
209 B
Protocol Buffer
11 lines
209 B
Protocol Buffer
enum nd_type {
|
|
LOOPBACK = 1;
|
|
}
|
|
|
|
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;
|
|
}
|