mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 18:17:52 -05:00
13 lines
276 B
Protocol Buffer
13 lines
276 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package com.v2ray.core.common.net;
|
|
option go_package = "net";
|
|
|
|
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;
|
|
} |