2020-11-25 19:01:53 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
|
|
package xray.proxy.vless.inbound;
|
|
|
|
|
option csharp_namespace = "Xray.Proxy.Vless.Inbound";
|
2020-12-04 09:36:16 +08:00
|
|
|
option go_package = "github.com/xtls/xray-core/proxy/vless/inbound";
|
2020-11-25 19:01:53 +08:00
|
|
|
option java_package = "com.xray.proxy.vless.inbound";
|
|
|
|
|
option java_multiple_files = true;
|
|
|
|
|
|
|
|
|
|
import "common/protocol/user.proto";
|
|
|
|
|
|
|
|
|
|
message Fallback {
|
2021-01-13 23:13:51 +08:00
|
|
|
string name = 1;
|
|
|
|
|
string alpn = 2;
|
|
|
|
|
string path = 3;
|
|
|
|
|
string type = 4;
|
|
|
|
|
string dest = 5;
|
|
|
|
|
uint64 xver = 6;
|
2020-11-25 19:01:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message Config {
|
|
|
|
|
repeated xray.common.protocol.User clients = 1;
|
2025-08-28 04:55:36 +00:00
|
|
|
repeated Fallback fallbacks = 2;
|
|
|
|
|
|
|
|
|
|
string decryption = 3;
|
|
|
|
|
uint32 xorMode = 4;
|
2025-09-04 14:03:55 +00:00
|
|
|
int64 seconds_from = 5;
|
|
|
|
|
int64 seconds_to = 6;
|
2025-09-02 23:37:14 +00:00
|
|
|
string padding = 7;
|
2020-11-25 19:01:53 +08:00
|
|
|
}
|