Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sit.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5396458581b7b64d76e94bac94f6fc3c9b5f28b0 (plain)
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";

message sit_entry {
	optional uint32 link		= 1;
	repeated uint32 local		= 2 [(criu).ipadd = true];
	repeated uint32 remote		= 3 [(criu).ipadd = true];
	optional uint32 ttl		= 4;
	optional uint32 tos		= 5;
	optional bool   pmtudisc	= 6;
	optional uint32 proto		= 7;
	optional uint32 flags		= 8;
	optional uint32 encap_type	= 9;
	optional uint32 encap_flags	= 10;
	optional uint32 encap_sport	= 11;
	optional uint32 encap_dport	= 12;
	optional uint32 rd_prefixlen	= 13;
	repeated uint32 rd_prefix	= 14 [(criu).ipadd = true];
	optional uint32 relay_prefixlen	= 15;
	repeated uint32 relay_prefix	= 16 [(criu).ipadd = true];
};