Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 829 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 829 Bytes

twamp-rs

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

Roadmap/Features

Controller

  • 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

Responder

  • 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

TWAMP-Control (unauthenticated only)

  • ServerGreeting as per RFC
  • SetUpResponse as per RFC
  • ServerStart as per RFC ... add more once these work