mirror of https://github.com/XTLS/Xray-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.
26 lines
663 B
26 lines
663 B
syntax = "proto3"; |
|
|
|
package xray.proxy.vless.inbound; |
|
option csharp_namespace = "Xray.Proxy.Vless.Inbound"; |
|
option go_package = "github.com/xtls/xray-core/proxy/vless/inbound"; |
|
option java_package = "com.xray.proxy.vless.inbound"; |
|
option java_multiple_files = true; |
|
|
|
import "common/protocol/user.proto"; |
|
|
|
message Fallback { |
|
string name = 1; |
|
string alpn = 2; |
|
string path = 3; |
|
string type = 4; |
|
string dest = 5; |
|
uint64 xver = 6; |
|
} |
|
|
|
message Config { |
|
repeated xray.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; |
|
}
|
|
|