17 lines
404 B
Protocol Buffer
17 lines
404 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package arbiter;
|
|
|
|
import "client.proto";
|
|
import "user_agent.proto";
|
|
|
|
message ServerInfo {
|
|
string version = 1;
|
|
bytes cert_public_key = 2;
|
|
}
|
|
|
|
service ArbiterService {
|
|
rpc Client(stream arbiter.client.ClientRequest) returns (stream arbiter.client.ClientResponse);
|
|
rpc UserAgent(stream arbiter.user_agent.UserAgentRequest) returns (stream arbiter.user_agent.UserAgentResponse);
|
|
}
|