File: opts.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 (20 lines) | stat: -rw-r--r-- 579 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
// SPDX-License-Identifier: MIT

syntax = "proto2";

import "google/protobuf/descriptor.proto";

message CRIU_Opts {
	optional bool hex = 1; // Indicate that CRIT should treat this field as hex.
	optional bool ipadd = 2; // The field is IPv4/v6 address
	optional string flags = 3;
	optional bool dev = 4; // Device major:minor packed
	optional bool odev = 5; // ... in old format
	optional string dict = 6;
	optional string conv = 7;
}

extend google.protobuf.FieldOptions {
	// Registered unique number to use for all kinds of custom options.
	optional CRIU_Opts criu = 1018;
}