1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-03 15:55:20 -05:00

refactor protos

This commit is contained in:
Darien Raymond
2016-10-12 18:43:55 +02:00
parent c1f91567ad
commit fc6a706166
44 changed files with 331 additions and 313 deletions

View File

@@ -8,8 +8,8 @@ option java_outer_classname = "ServerSpecProto";
import "v2ray.com/core/common/net/address.proto";
import "v2ray.com/core/common/protocol/user.proto";
message ServerSpecPB {
v2ray.core.common.net.AddressPB address = 1;
message ServerEndpoint {
v2ray.core.common.net.IPOrDomain address = 1;
uint32 port = 2;
repeated v2ray.core.common.protocol.User user = 3;
}