mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 09:58:09 +00:00
12 lines
209 B
Protocol Buffer
12 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;
|
||
|
}
|