mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-12 23:36:43 -05:00
bb44d01096
* Format proto files using clang-format according to google style * Regenerate pb.go files
26 lines
657 B
Protocol Buffer
26 lines
657 B
Protocol Buffer
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;
|
|
}
|