Name Date Size #Lines LOC

..--

MakefileH A D07-Aug-2025785 3116

README.mdH A D07-Aug-2025463 2013

build.infoH A D07-Aug-2025410 1511

server.cH A D07-Aug-20256.4 KiB244146

README.md

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