1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 10:56:07 -04:00
v2fly/proxy/vless/outbound/config.proto

24 lines
757 B
Protocol Buffer
Raw Normal View History

2020-07-28 11:00:23 -04:00
syntax = "proto3";
package v2ray.core.proxy.vless.outbound;
option csharp_namespace = "V2Ray.Core.Proxy.Vless.Outbound";
2021-02-16 15:31:50 -05:00
option go_package = "github.com/v2fly/v2ray-core/v4/proxy/vless/outbound";
2020-07-28 11:00:23 -04:00
option java_package = "com.v2ray.core.proxy.vless.outbound";
option java_multiple_files = true;
import "common/protocol/server_spec.proto";
2021-09-05 10:59:42 -04:00
import "common/net/address.proto";
import "common/protoext/extensions.proto";
2020-07-28 11:00:23 -04:00
message Config {
2020-08-28 03:51:09 -04:00
repeated v2ray.core.common.protocol.ServerEndpoint vnext = 1;
2020-07-28 11:00:23 -04:00
}
2021-09-05 10:59:42 -04:00
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;
}