1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/other/unix-socket
2022-01-29 14:17:25 +00:00
..
src Restructure folders (#411) 2021-02-26 00:57:58 +00:00
Cargo.toml Update others/unix-socket to v4. (#495) 2022-01-29 14:17:25 +00:00
README.md fix broken links (#441) 2021-10-06 22:28:53 +01:00

Unix domain socket example

cd other/unix-socket
cargo run

# in another shell
curl --unix-socket /tmp/actix-uds.socket http://localhost/
Hello world!

Although this will only one thread for handling incoming connections according to the documentation.

And it does not delete the socket file (/tmp/actix-uds.socket) when stopping the server, so it will fail to start next time you run it unless you delete the socket file manually.