Fix line wrapping in README-QUIC.md

This commit is contained in:
Samson S. Kolge 2025-04-04 16:53:23 +05:30
parent b0eb094ae3
commit 5c2bbbbe97
No known key found for this signature in database
GPG Key ID: 03850C5AD74D0668
1 changed files with 12 additions and 4 deletions

View File

@ -72,7 +72,12 @@ HTTP/3 request or receiving any response data is not.
### How can I create a QUIC server with OpenSSL?
Starting with OpenSSL 3.5, you can create a QUIC server. OpenSSL provides a server implementation example that you can use as a reference. The example QUIC server implementation can be found in the source tree under [`demos/quic/server`](./demos/quic/server/). This demonstrates how to implement a QUIC server using the OpenSSL API.
Starting with OpenSSL 3.5, you can create a QUIC server. OpenSSL provides a server
implementation example that you can use as a reference.
The example QUIC server implementation can be found in the source tree under
[`demos/quic/server`](./demos/quic/server/). This demonstrates how to implement a
basic QUIC server using the OpenSSL API.
To run the example QUIC server:
@ -87,11 +92,14 @@ $ ./demos/quic/server/server 4433 server.pem server.key
```
Replace `server.pem` and `server.key` with your certificate and private key files.
Note that the standard `openssl s_server` command does NOT support QUIC - you must use this dedicated server example instead.
Note that the standard `openssl s_server` command does NOT support QUIC - you must
use this dedicated server example instead.
For production applications, see the [Demo-Driven Design (DDD)][DDD] demos under `doc/designs/ddd/` for additional server implementation examples.
For production applications, see the [Demo-Driven Design (DDD)][DDD] demos under
`doc/designs/ddd/` for additional server implementation examples.
For more information about implementing QUIC servers with OpenSSL, refer to the [OpenSSL Guide] and the [openssl-quic(7) manual page].
For more information about implementing QUIC servers with OpenSSL, refer to the
[OpenSSL Guide] and the [openssl-quic(7) manual page].
[openssl-quic(7) manual page]: https://www.openssl.org/docs/manmaster/man7/openssl-quic.html
[OpenSSL Guide]: https://www.openssl.org/docs/manmaster/man7/ossl-guide-introduction.html