Files
wfe/wfe-buildkit-protos/proto/github.com/moby/buildkit/session/sshforward/ssh.proto

23 lines
435 B
Protocol Buffer

syntax = "proto3";
package moby.sshforward.v1;
option go_package = "github.com/moby/buildkit/session/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 {
}