1Simple single-connection QUIC server example 2============================================ 3 4This is a simple example of a QUIC server that accepts and handles one 5connection at a time. It demonstrates blocking use of the QUIC server API. 6 7Type `make` to build and `make run` to run. 8 9Usage: 10 11```bash 12./server <port-number> <certificate-file> <key-file> 13``` 14 15Example client usage: 16 17```bash 18openssl s_client -quic -alpn ossltest -connect 127.0.0.1:<port-number> 19``` 20