mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
475 B
19 lines
475 B
syntax = "proto3"; |
|
|
|
package xray.common.net; |
|
option csharp_namespace = "Xray.Common.Net"; |
|
option go_package = "github.com/xtls/xray-core/common/net"; |
|
option java_package = "com.xray.common.net"; |
|
option java_multiple_files = true; |
|
|
|
// Address of a network host. It may be either an IP address or a domain |
|
// address. |
|
message IPOrDomain { |
|
oneof address { |
|
// IP address. Must by either 4 or 16 bytes. |
|
bytes ip = 1; |
|
|
|
// Domain address. |
|
string domain = 2; |
|
} |
|
}
|
|
|