James Muir 86db958835 demos: tidy up makefiles, fix warnings | 1 year ago | |
---|---|---|
.. | ||
Makefile | 86db958835 demos: tidy up makefiles, fix warnings | 1 year ago |
README.md | 22fa1602da quic http3 demo: minor updates | 1 year ago |
ossl-nghttp3-demo.c | 17b8f405a2 Rename | 1 year ago |
ossl-nghttp3.c | f92d4a07cc Add SNI | 1 year ago |
ossl-nghttp3.h | 17b8f405a2 Rename | 1 year ago |
This is a simple demo of how to use HTTP/3 with OpenSSL QUIC using the HTTP/3 library “nghttp3”.
The demo is structured into two parts:
ossl-nghttp3.c
);ossl-nghttp3-demo.c
).The Makefile in this directory can be used to build the demo on *nix-style
systems. You will need the nghttp3
library and header file. On
Ubuntu, these can be obtained by installing the package libnghttp3-dev
.
Depending on your system configuration it may be necessary to set the
SSL_CERT_FILE
or SSL_CERT_DIR
environment variables to a location where
trusted root CA certificates can be found.
After building by running make
, run ./ossl-nghttp3-demo
with a hostname and
port as the sole argument:
$ make
$ LD_LIBRARY_PATH=../.. ./ossl-nghttp3-demo www.google.com:443
The demo produces the HTTP response headers in textual form as output followed by the response body.