0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-19 22:58:03 +03:00

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
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;
}