25 lines
466 B
Protocol Buffer
25 lines
466 B
Protocol Buffer
// protoc --go_out=. --go_opt=paths=source_relative \
|
|
// --go-grpc_out=. --go-grpc_opt=paths=source_relative \
|
|
// hop.proto
|
|
|
|
syntax = "proto3";
|
|
package proto;
|
|
option go_package = "github.com/go-gost/plugin/hop/proto";
|
|
|
|
message SelectRequest {
|
|
string network = 1;
|
|
string addr = 2;
|
|
string host = 3;
|
|
string client = 4;
|
|
string path = 5;
|
|
string src = 6;
|
|
}
|
|
|
|
message SelectReply {
|
|
bytes node = 1;
|
|
}
|
|
|
|
service Hop {
|
|
rpc Select(SelectRequest) returns (SelectReply);
|
|
}
|