mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-21 09:36:34 -05:00
623cb24644
* remove xtls * generate pb * Update protoc * Clean up go.mod & go.sum * format code * restore vless flow * fix codacy * do NOT interfere with pb.go files Co-authored-by: loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com>
32 lines
694 B
Protocol Buffer
32 lines
694 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package v2ray.core.proxy.trojan;
|
|
option csharp_namespace = "V2Ray.Core.Proxy.Trojan";
|
|
option go_package = "v2ray.com/core/proxy/trojan";
|
|
option java_package = "com.v2ray.core.proxy.trojan";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/protocol/user.proto";
|
|
import "common/protocol/server_spec.proto";
|
|
|
|
message Account {
|
|
string password = 1;
|
|
}
|
|
|
|
message Fallback {
|
|
string alpn = 1;
|
|
string path = 2;
|
|
string type = 3;
|
|
string dest = 4;
|
|
uint64 xver = 5;
|
|
}
|
|
|
|
message ClientConfig {
|
|
repeated v2ray.core.common.protocol.ServerEndpoint server = 1;
|
|
}
|
|
|
|
message ServerConfig {
|
|
repeated v2ray.core.common.protocol.User users = 1;
|
|
repeated Fallback fallbacks = 3;
|
|
}
|