mirror of
https://github.com/mudler/luet.git
synced 2025-08-25 18:38:51 +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>
22 lines
401 B
Protocol Buffer
22 lines
401 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package moby.sshforward.v1;
|
|
|
|
option go_package = "sshforward";
|
|
|
|
service SSH {
|
|
rpc CheckAgent(CheckAgentRequest) returns (CheckAgentResponse);
|
|
rpc ForwardAgent(stream BytesMessage) returns (stream BytesMessage);
|
|
}
|
|
|
|
// BytesMessage contains a chunk of byte data
|
|
message BytesMessage{
|
|
bytes data = 1;
|
|
}
|
|
|
|
message CheckAgentRequest {
|
|
string ID = 1;
|
|
}
|
|
|
|
message CheckAgentResponse {
|
|
} |