Rust examples of using TQUIC on Linux.
Refer to the TQUIC prerequisites.
cargo build
Generate certificate and key.
cd target/debug
openssl genrsa -out cert.key 2048
openssl req -new -x509 -days 36500 -key cert.key -out cert.crt -subj "/CN=example.org"
Run simple_server.
./simple_server
cd target/debug
./simple_client -c 127.0.0.1:4433