You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
390 B
Protocol Buffer

3 years ago
syntax = "proto3";
package grpc;
option go_package = "internal/pkg/grpc";
3 years ago
service handshake {
rpc ClientDiscoveryHandler(ClientDiscoveryRequest) returns (ClientDiscoveryResponse);
3 years ago
}
message ClientDiscoveryRequest {
3 years ago
uint32 Id = 1;
string Ip = 2;
3 years ago
int32 Port = 3;
3 years ago
string Model = 4;
string ClientType = 5;
3 years ago
}
message ClientDiscoveryResponse {
3 years ago
bool Success = 1;
3 years ago
}