Files
Bob Beck 2fab90bb5e 4.0-POST-CLANG-FORMAT-WEBKIT
Reviewed-by: Saša Nedvědický <sashan@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Nikola Pajkovsky <nikolap@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/29242)
2025-12-09 00:28:19 -07:00
..
2025-02-17 11:27:33 -05:00
2025-02-17 11:27:33 -05:00
2025-02-17 11:27:32 -05:00
2025-12-09 00:28:19 -07: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>