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

sk-opts.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d21651a1c2fbb8822c4816fddc0be90a5f8b3ea (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
25
26
27
28
29
message sk_opts_entry {
	required uint32		so_sndbuf	= 1;
	required uint32		so_rcvbuf	= 2;

	required uint64		so_snd_tmo_sec	= 3;
	required uint64		so_snd_tmo_usec	= 4;
	required uint64		so_rcv_tmo_sec	= 5;
	required uint64		so_rcv_tmo_usec	= 6;
	optional bool		reuseaddr	= 7;

	optional uint32		so_priority	= 8;
	optional uint32		so_rcvlowat	= 9;
	optional uint32		so_mark		= 10;
	optional bool		so_passcred	= 11;
	optional bool		so_passsec	= 12;
	optional bool		so_dontroute	= 13;
	optional bool		so_no_check	= 14;

	optional string		so_bound_dev	= 15;

	repeated fixed64	so_filter	= 16;
}

enum sk_shutdown {
	NONE = 0;
	READ = 1;
	WRITE = 2;
	BOTH = 3;
}