mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
652 B
25 lines
652 B
syntax = "proto3";
|
|
|
|
package v2ray.core.proxy.vless.inbound;
|
|
option csharp_namespace = "V2Ray.Core.Proxy.Vless.Inbound";
|
|
option go_package = "v2ray.com/core/proxy/vless/inbound";
|
|
option java_package = "com.v2ray.core.proxy.vless.inbound";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/protocol/user.proto";
|
|
|
|
message Fallback {
|
|
string alpn = 1;
|
|
string path = 2;
|
|
string type = 3;
|
|
string dest = 4;
|
|
uint64 xver = 5;
|
|
}
|
|
|
|
message Config {
|
|
repeated v2ray.core.common.protocol.User clients = 1;
|
|
// Decryption settings. Only applies to server side, and only accepts "none" for now.
|
|
string decryption = 2;
|
|
repeated Fallback fallbacks = 3;
|
|
}
|