mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
17 lines
292 B
Protocol Buffer
17 lines
292 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package fsutil;
|
||
|
|
||
|
message Stat {
|
||
|
string path = 1;
|
||
|
uint32 mode = 2;
|
||
|
uint32 uid = 3;
|
||
|
uint32 gid = 4;
|
||
|
int64 size = 5;
|
||
|
int64 modTime = 6;
|
||
|
// int32 typeflag = 7;
|
||
|
string linkname = 7;
|
||
|
int64 devmajor = 8;
|
||
|
int64 devminor = 9;
|
||
|
map<string, bytes> xattrs = 10;
|
||
|
}
|