mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-14 18:09:05 +00:00
f0f3b417f7
https://github.com/XTLS/Xray-core/commit/5f5ae375714abd67eb2f0a0f2e86410b6f29f7c2 https://github.com/XTLS/Xray-core/commit/9122d0f056ed5b0e6fc9b290fdc7b39f47b49a39
37 lines
841 B
Protocol Buffer
37 lines
841 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.proxy.freedom;
|
|
option csharp_namespace = "Xray.Proxy.Freedom";
|
|
option go_package = "github.com/xtls/xray-core/proxy/freedom";
|
|
option java_package = "com.xray.proxy.freedom";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/protocol/server_spec.proto";
|
|
|
|
message DestinationOverride {
|
|
xray.common.protocol.ServerEndpoint server = 1;
|
|
}
|
|
|
|
message Fragment {
|
|
uint64 packets_from = 1;
|
|
uint64 packets_to = 2;
|
|
uint64 length_min = 3;
|
|
uint64 length_max = 4;
|
|
uint64 interval_min = 5;
|
|
uint64 interval_max = 6;
|
|
}
|
|
|
|
message Config {
|
|
enum DomainStrategy {
|
|
AS_IS = 0;
|
|
USE_IP = 1;
|
|
USE_IP4 = 2;
|
|
USE_IP6 = 3;
|
|
}
|
|
DomainStrategy domain_strategy = 1;
|
|
uint32 timeout = 2 [deprecated = true];
|
|
DestinationOverride destination_override = 3;
|
|
uint32 user_level = 4;
|
|
Fragment fragment = 5;
|
|
}
|