This example program will:
- Bind to an IP address and port
- Accept any number of secure TLS connections
- Handle each connection by:
- Waiting for
String
messages to be received - Echoing the
String
message back to the source
- Waiting for
export RUST_LOG=info
cargo run <ip-address-to-bind-to> <cert-file> <key-file>
export RUST_LOG=info
cargo run 127.0.0.1:5678 end.cert end.rsa