summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/hashicorp/go-plugin/grpc_broker.proto
blob: f578348566e4abf9626ac372b74d2f65f7937df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";
package plugin;

message ConnInfo {
    uint32 service_id = 1;
    string network = 2;
    string address = 3;
}

service GRPCBroker {
    rpc StartStream(stream ConnInfo) returns (stream ConnInfo);
}