1
0
mirror of https://github.com/actix/examples synced 2024-11-24 14:53:00 +01:00
examples/other/udp-echo/README.md
2021-02-26 00:57:58 +00:00

19 lines
273 B
Markdown

# udp-echo
## Usage
### server
```bash
cd examples/udp-echo
cargo run
# Started http server: 127.0.0.1:12345
```
### socat client
Copy port provided in server output and run following command to communicate
with the udp server:
```bash
socat - UDP4:localhost:12345
```