summaryrefslogtreecommitdiffstats
path: root/demos/quic/server/README.md
blob: 99bc10a328fb8334378e81fa7d3cea7fb507f462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>
```