singe/thirdparty/openssl/demos/quic/server
2026-09-08 14:29:27 -05:00
..
build.info Third-party libraries updated. 2026-09-08 14:29:27 -05:00
Makefile Third-party libraries updated. 2026-09-08 14:29:27 -05:00
README.md Third-party libraries updated. 2026-09-08 14:29:27 -05:00
server.c Third-party libraries updated. 2026-09-08 14:29:27 -05:00

Simple single-connection QUIC server example

This is a simple example of a QUIC server that accepts and handles one connection at a time. It demonstrates blocking use of the QUIC server API.

Type make to build and make run to run.

Usage:

./server <port-number> <certificate-file> <key-file>

Example client usage:

openssl s_client -quic -alpn ossltest -connect 127.0.0.1:<port-number>