-
SummaryAxum's most straightforward way to connect HTTP world to the socket world is Even the official UNIX socket example is somewhat lengthy and involved. My library tokio_listener is aimed at being something like a drop-in replacement of Current (unpublished to crates.io so far) implementation just copies the code from P.S. Why Tokio's axum version0.7.3 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
That example is the best way even though it is a bit lengthy.
Dunno but it appears to be a wrapper around https://docs.rs/mio/latest/mio/net/struct.SocketAddr.html which is itself a wrapper around some libc stuff that I'm not familiar with. |
Beta Was this translation helpful? Give feedback.
Yes. @davidpdrsn maybe we should add
serve_uds
toaxum-extra
?