actix / actix-web

Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
https://actix.rs
Apache License 2.0
21.34k stars 1.66k forks source link

Support for Unix Domain Socket connections in Client #1053

Open kornelski opened 5 years ago

kornelski commented 5 years ago

In 0.7 it was possible to make a request over a UDS with:

client.with_connection(
  client::Connection::from_stream(
    UnixStream::connect(path)?));

In 1.0 these methods are gone. Would it be possible to re-add this functionality?

fafhrd91 commented 5 years ago

It is possible, matter of PR

diaevd commented 3 years ago

Is there any hope for the implementation of this feature?

kornelski commented 3 years ago

https://lib.rs/hyperlocal can make UDS requests.