mirror of https://github.com/XTLS/Xray-core
				
				
				
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			637 B
		
	
	
	
		
			Protocol Buffer
		
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			637 B
		
	
	
	
		
			Protocol Buffer
		
	
	
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;
 | 
						|
  repeated Fallback fallbacks = 2;
 | 
						|
 | 
						|
  string decryption = 3;
 | 
						|
  uint32 xorMode = 4;
 | 
						|
  uint32 seconds = 5;
 | 
						|
  string padding = 6;
 | 
						|
}
 |