1
0
forked from extern/smegmesh
smegmesh/pkg/grpc/ctrlserver/ctrlserver.proto
Tim Beatham 7be11dbaa3 27-remove-client-grpc-endpoint
Removed a client's grpc endpoint value. Client's aren't publicly
available so there is no need for a client's gRPC endpoint.
Also changed a node ID's to their public key. A node id's public
address is an issue for mobility of clients as their endpoint
is subject to change
2023-11-24 12:07:03 +00:00

16 lines
252 B
Protocol Buffer

syntax = "proto3";
package rpctypes;
option go_package = "pkg/rpc";
service MeshCtrlServer {
rpc GetMesh(GetMeshRequest) returns (GetMeshReply) {}
}
message GetMeshRequest {
string meshId = 1;
}
message GetMeshReply {
bytes mesh = 1;
}