github.com/v2fly/v2ray-core/v4@v4.45.2/proxy/vless/inbound/config.proto (about) 1 syntax = "proto3"; 2 3 package v2ray.core.proxy.vless.inbound; 4 option csharp_namespace = "V2Ray.Core.Proxy.Vless.Inbound"; 5 option go_package = "github.com/v2fly/v2ray-core/v4/proxy/vless/inbound"; 6 option java_package = "com.v2ray.core.proxy.vless.inbound"; 7 option java_multiple_files = true; 8 9 import "common/protocol/user.proto"; 10 11 message Fallback { 12 string alpn = 1; 13 string path = 2; 14 string type = 3; 15 string dest = 4; 16 uint64 xver = 5; 17 } 18 19 message Config { 20 repeated v2ray.core.common.protocol.User clients = 1; 21 // Decryption settings. Only applies to server side, and only accepts "none" 22 // for now. 23 string decryption = 2; 24 repeated Fallback fallbacks = 3; 25 }