C examples of using TQUIC on Linux.
simple_server
A simple http/0.9 server responsing "OK" to any requests.
The certificate and private key are hard coded to "cert.crt" and "cert.key".
The first argument is the listening IP and the second is the listening port.
simple_client
A simple http/0.9 client.
The first argument is the destination IP and the second is the destination port.
Refer to the TQUIC prerequisites.
make
./simple_server 0.0.0.0 4433
./simple_client 127.0.0.1 4433