File: sk-netlink.proto

package info (click to toggle)
golang-github-checkpoint-restore-go-criu 7.2.0%2Bds1-4
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 1,796 kB
  • sloc: makefile: 231; ansic: 195; python: 137; sh: 110
file content (24 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT

syntax = "proto2";

import "opts.proto";
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;
	required uint32			flags		=  6 [(criu).hex = true];
	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;
	optional uint32			ns_id		=  13;
	// For netlink queued messages
	// optional nl_sk_opts_entry	nl_opts		=  14;
}