1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00
v2fly/common/protocol/server_spec.proto

17 lines
494 B
Protocol Buffer
Raw Normal View History

2016-09-17 22:41:21 +00:00
syntax = "proto3";
2016-09-26 13:14:16 +00:00
package v2ray.core.common.protocol;
2016-12-22 23:24:28 +00:00
option csharp_namespace = "V2Ray.Core.Common.Protocol";
2021-02-16 20:31:50 +00:00
option go_package = "github.com/v2fly/v2ray-core/v4/common/protocol";
2016-09-26 13:14:16 +00:00
option java_package = "com.v2ray.core.common.protocol";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-09-26 13:14:16 +00:00
import "common/net/address.proto";
import "common/protocol/user.proto";
2016-09-17 22:41:21 +00:00
2016-10-12 16:43:55 +00:00
message ServerEndpoint {
v2ray.core.common.net.IPOrDomain address = 1;
2016-09-17 22:41:21 +00:00
uint32 port = 2;
2016-09-26 13:14:16 +00:00
repeated v2ray.core.common.protocol.User user = 3;
2017-02-13 21:39:55 +00:00
}