From 745a297f32d520c6791755c0db5078a93c239c02 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 31 Mar 2025 11:41:19 -0400 Subject: [PATCH] feat(client): implement Connection for UnixStream and NamedPipeClient --- src/client/legacy/connect/http.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/client/legacy/connect/http.rs b/src/client/legacy/connect/http.rs index 4a6bd35..be21435 100644 --- a/src/client/legacy/connect/http.rs +++ b/src/client/legacy/connect/http.rs @@ -522,6 +522,20 @@ impl Connection for TcpStream { } } +#[cfg(unix)] +impl Connection for tokio::net::UnixStream { + fn connected(&self) -> Connected { + Connected::new() + } +} + +#[cfg(windows)] +impl Connection for tokio::net::windows::named_pipe::NamedPipeClient { + fn connected(&self) -> Connected { + Connected::new() + } +} + // Implement `Connection` for generic `TokioIo` so that external crates can // implement their own `HttpConnector` with `TokioIo`. impl Connection for TokioIo