From 5ca61a3e3d800068f28096f894de54abc0e082e9 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Tue, 15 Apr 2025 13:14:04 +1000 Subject: [PATCH] fix(connlib): disable `apple-fast-datapath` on `quinn-udp` (#8784) There appears to be a regression on the most recent MacOS release (15.4) where we can no longer set `src_ip` on outgoing datagrams for IPv6 sockets. In order to unblock the upcoming release, disable the `fast-apple-datapath` feature until we know how to fix it. Related: https://github.com/quinn-rs/quinn/issues/2206 Resolves: #8779 --- rust/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 2842572e3..f0bfff99c 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -118,7 +118,7 @@ phoenix-channel = { path = "phoenix-channel" } png = "0.17.16" proptest = "1.6.0" proptest-state-machine = "0.3.1" -quinn-udp = { version = "0.5.8", features = ["fast-apple-datapath"] } +quinn-udp = { version = "0.5.8" } rand = "0.8.5" gat-lending-iterator = "0.1.6" rand_core = "0.6.4"