1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 10:45:22 +00:00
v2fly/common/net/address.proto

20 lines
498 B
Protocol Buffer
Raw Normal View History

2016-08-26 22:04:35 +00:00
syntax = "proto3";
2016-09-26 13:14:16 +00:00
package v2ray.core.common.net;
2016-12-22 23:24:28 +00:00
option csharp_namespace = "V2Ray.Core.Common.Net";
2021-02-16 20:31:50 +00:00
option go_package = "github.com/v2fly/v2ray-core/v4/common/net";
2016-09-26 13:14:16 +00:00
option java_package = "com.v2ray.core.common.net";
2017-02-03 22:15:10 +00:00
option java_multiple_files = true;
2016-08-26 22:04:35 +00:00
// Address of a network host. It may be either an IP address or a domain
// address.
2016-10-12 16:43:55 +00:00
message IPOrDomain {
2016-08-26 22:04:35 +00:00
oneof address {
2016-10-17 22:12:09 +00:00
// IP address. Must by either 4 or 16 bytes.
2016-08-26 22:04:35 +00:00
bytes ip = 1;
2016-10-17 22:12:09 +00:00
// Domain address.
2016-08-26 22:04:35 +00:00
string domain = 2;
}
2017-02-08 09:01:22 +00:00
}