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

tun.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad61037db1610b310d44f23f84d5b0f2838ab52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: MIT

syntax = "proto2";

import "opts.proto";

message tunfile_entry {
	required uint32		id		= 1;
	optional string		netdev		= 2;
	optional bool		detached	= 3;
	optional uint32		ns_id		= 4;
};

message tun_link_entry {
	required uint32		flags		= 1 [(criu).hex = true];
	required int32		owner		= 2;
	required int32		group		= 3;
	required uint32		vnethdr		= 4;
	required uint32		sndbuf		= 5;
};