• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..22-Aug-2025-

Makefile A D22-Aug-2025815 3116

README.md A D22-Aug-2025482 2013

build.info A D22-Aug-2025424 1511

server.c A D22-Aug-20256.6 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