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

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

syntax = "proto2";

message autofs_entry {
	required int32		fd			= 1;
	required int32		pgrp			= 2;
	required int32		timeout			= 3;
	required int32		minproto		= 4;
	required int32		maxproto		= 5;
	required int32		mode			= 6;

	optional int32		uid			= 7;
	optional int32		gid			= 8;

	optional int32		read_fd			= 9;
}