1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-08 22:34:21 -04:00
v2fly/common/net/destination.proto

15 lines
373 B
Protocol Buffer
Raw Normal View History

2016-09-20 04:44:44 -04:00
syntax = "proto3";
2016-09-26 09:14:16 -04:00
package v2ray.core.common.net;
2016-09-20 04:44:44 -04:00
option go_package = "net";
2016-09-26 09:14:16 -04:00
option java_package = "com.v2ray.core.common.net";
option java_outer_classname = "DestinationProto";
2016-09-20 05:53:05 -04:00
import "v2ray.com/core/common/net/network.proto";
import "v2ray.com/core/common/net/address.proto";
message DestinationPB {
Network network = 1;
AddressPB address = 2;
uint32 port = 3;
}