mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
835 B
36 lines
835 B
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 { |
|
int32 min_interval = 1; |
|
int32 max_interval = 2; |
|
int32 min_length = 3; |
|
int32 max_length = 4; |
|
int32 start_packet = 5; |
|
int32 end_packet = 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; |
|
}
|
|
|