WIP TWAMP RFC 5357 implementation in rust.
# Run server first.
> RUST_LOG="debug" cargo watch -x "run"
# Run client
> RUST_LOG="debug" cargo r -- --server 127.0.0.1
- establish TCP connection to server
- read server greeting
- send set-up-response
- read server-start
- send request-tw-session ... will add more once these work
- handle TCP connection from controller
- send server greeting
- read set-up-response
- send server-start
- read request-tw-session ... will add more once these work
-
ServerGreeting
as per RFC -
SetUpResponse
as per RFC -
ServerStart
as per RFC ... add more once these work