1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00

Merge pull request #892 from JonathanLindsey/fix_chat_tcp_panic

Fix chat-tcp panic when current directory is not the expected directory
This commit is contained in:
Rob Ede 2024-09-02 20:51:00 +00:00 committed by GitHub
commit c1400e5fc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,14 @@ Chat server listens for incoming tcp connections. Server can access several type
- `some message` - just string, send message to all peers in same room
- client has to send heartbeat `Ping` messages, if server does not receive a heartbeat message for 10 seconds connection gets dropped
To start server use command: `cargo run --bin websocket-tcp-server`
To start server run
```sh
cd websockets/chat-tcp
cargo run --bin websocket-tcp-server`
```
If the current directory is not correct, the server will look for `index.html` in the wrong place.
## Client