mirror of
https://github.com/mudler/luet.git
synced 2025-08-26 02:49:02 +00:00
Optionally add back privileged extraction which can be enabled with LUET_PRIVILEGED_EXTRACT=true Signed-off-by: Ettore Di Giacinto <mudler@sabayon.org>
20 lines
411 B
Protocol Buffer
20 lines
411 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package moby.filesync.v1;
|
|
|
|
option go_package = "filesync";
|
|
|
|
service FileSync{
|
|
rpc DiffCopy(stream BytesMessage) returns (stream BytesMessage);
|
|
rpc TarStream(stream BytesMessage) returns (stream BytesMessage);
|
|
}
|
|
|
|
service FileSend{
|
|
rpc DiffCopy(stream BytesMessage) returns (stream BytesMessage);
|
|
}
|
|
|
|
|
|
// BytesMessage contains a chunk of byte data
|
|
message BytesMessage{
|
|
bytes data = 1;
|
|
} |