enhanced to be able to specify the service network for server-side peers

This commit is contained in:
2024-12-05 18:24:42 +09:00
parent cd5bbedc11
commit e2d25cb53b
8 changed files with 181 additions and 100 deletions

View File

@ -22,8 +22,8 @@ enum ROUTE_PROTO {
message RouteDesc {
uint32 RouteId = 1;
ROUTE_PROTO Proto = 2;
string TargetAddrStr = 3;
string TargetAddrStr = 2;
ROUTE_PROTO ServiceProto = 3;
string ServiceNetStr = 4;
};