mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
24 lines
757 B
Protocol Buffer
24 lines
757 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package v2ray.core.proxy.vless.outbound;
|
|
option csharp_namespace = "V2Ray.Core.Proxy.Vless.Outbound";
|
|
option go_package = "github.com/v2fly/v2ray-core/v5/proxy/vless/outbound";
|
|
option java_package = "com.v2ray.core.proxy.vless.outbound";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/protocol/server_spec.proto";
|
|
import "common/net/address.proto";
|
|
import "common/protoext/extensions.proto";
|
|
|
|
message Config {
|
|
repeated v2ray.core.common.protocol.ServerEndpoint vnext = 1;
|
|
}
|
|
|
|
message SimplifiedConfig {
|
|
option (v2ray.core.common.protoext.message_opt).type = "outbound";
|
|
option (v2ray.core.common.protoext.message_opt).short_name = "vless";
|
|
|
|
v2ray.core.common.net.IPOrDomain address = 1;
|
|
uint32 port = 2;
|
|
string uuid = 3;
|
|
} |