New feature: Happy Eyeballs (RFC 8305) (#4667)

Closes https://github.com/XTLS/Xray-core/issues/4473
This commit is contained in:
patterniha 2025-06-07 16:50:06 +03:30 committed by GitHub
parent bfbccc2721
commit 97fdcb4228
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 417 additions and 99 deletions

View file

@ -130,4 +130,13 @@ message SocketConfig {
repeated CustomSockopt customSockopt = 20;
AddressPortStrategy address_port_strategy = 21;
HappyEyeballsConfig happy_eyeballs = 22;
}
message HappyEyeballsConfig {
bool prioritize_ipv6 = 1;
uint32 interleave = 2;
uint64 try_delayMs = 3;
uint32 max_concurrent_try = 4;
}