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-03-25 19:28:42 +04:00
|
|
|
import "fown.proto";
|
|
|
|
import "sk-opts.proto";
|
|
|
|
|
|
|
|
message netlink_sk_entry {
|
|
|
|
required uint32 id = 1;
|
|
|
|
required uint32 ino = 2;
|
|
|
|
required uint32 protocol = 3;
|
|
|
|
required uint32 state = 4;
|
2015-01-22 18:46:00 +03:00
|
|
|
required uint32 flags = 6 [(criu).hex = true];
|
2013-03-25 19:28:42 +04:00
|
|
|
required uint32 portid = 7;
|
|
|
|
repeated uint32 groups = 8;
|
|
|
|
required uint32 dst_portid = 9;
|
|
|
|
required uint32 dst_group = 10;
|
|
|
|
required fown_entry fown = 11;
|
|
|
|
required sk_opts_entry opts = 12;
|
2017-02-15 02:59:25 +03:00
|
|
|
optional uint32 ns_id = 13;
|
2017-03-17 17:55:06 +03:00
|
|
|
// For netlink queued messages
|
|
|
|
// optional nl_sk_opts_entry nl_opts = 14;
|
2013-03-25 19:28:42 +04:00
|
|
|
}
|