mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c9ebd2f13b
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
19 lines
291 B
Protocol Buffer
19 lines
291 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package fsutil;
|
|
|
|
import "stat.proto";
|
|
|
|
message Packet {
|
|
enum PacketType {
|
|
PACKET_STAT = 0;
|
|
PACKET_REQ = 1;
|
|
PACKET_DATA = 2;
|
|
PACKET_FIN = 3;
|
|
PACKET_ERR = 4;
|
|
}
|
|
PacketType type = 1;
|
|
Stat stat = 2;
|
|
uint32 ID = 3;
|
|
bytes data = 4;
|
|
}
|