mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-15 16:56:08 -05:00
14 lines
425 B
Protocol Buffer
14 lines
425 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package v2ray.core.proxy.vmess.outbound;
|
|
option csharp_namespace = "V2Ray.Core.Proxy.Vmess.Outbound";
|
|
option go_package = "github.com/v2fly/v2ray-core/v4/proxy/vmess/outbound";
|
|
option java_package = "com.v2ray.core.proxy.vmess.outbound";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/protocol/server_spec.proto";
|
|
|
|
message Config {
|
|
repeated v2ray.core.common.protocol.ServerEndpoint Receiver = 1;
|
|
}
|