1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 11:35:23 +00:00
v2fly/common/net/address.proto
2016-08-27 00:04:35 +02:00

11 lines
167 B
Protocol Buffer

syntax = "proto3";
package com.v2ray.core.common.net;
option go_package = "net";
message AddressPB {
oneof address {
bytes ip = 1;
string domain = 2;
}
}