-
-
Notifications
You must be signed in to change notification settings - Fork 719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support for unix domain sockets? #101
Comments
Yep! It's supported via hyper's In warp, it purposefully hasn't been exposed yet, as I had questions around exposing this generic interface. It's also somewhat related TLS (#83). |
It works without a glitch, thank you! |
I'd like to use unix domain socket as a server connection, but Server accepts only SocketAddr. I am aware of tokio-uds (which is btw archived) but could not find out how to use it in warp Server. There is also hyperlocal, but it provides its own server.
In general, wouldtn't the whole rust-net/web framework be more composable if servers (and clients) used a trait for connection instead of a concrete type? E.g. like Conn interface in go?
The text was updated successfully, but these errors were encountered: