1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-27 04:25:44 -05:00

refine proto package names

This commit is contained in:
Darien Raymond
2016-09-26 15:14:16 +02:00
parent 922e761bef
commit 91f2a40dae
21 changed files with 81 additions and 38 deletions

View File

@@ -1,13 +1,15 @@
syntax = "proto3";
package v2ray.core.common.protocol;
option go_package = "protocol";
option java_package = "com.v2ray.core.common.protocol";
option java_outer_classname = "ServerSpecProto";
import "v2ray.com/core/common/net/address.proto";
import "v2ray.com/core/common/protocol/user.proto";
package com.v2ray.core.common.protocol;
option go_package = "protocol";
message ServerSpecPB {
com.v2ray.core.common.net.AddressPB address = 1;
v2ray.core.common.net.AddressPB address = 1;
uint32 port = 2;
repeated com.v2ray.core.common.protocol.User user = 3;
repeated v2ray.core.common.protocol.User user = 3;
}