aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-08-30 17:00:16 +0100
committerHugo Landau <hlandau@openssl.org>2023-09-01 10:45:36 +0100
commit8d7f034622c0235d06f4d6526f71dcab2f71b0c6 (patch)
tree4afbf9655b468b1bb01f0a81e2e71da134705cd7 /doc
parentabeb41b42fa3cdca99d3f3fef48ea6ee04023d68 (diff)
downloadopenssl-8d7f034622c0235d06f4d6526f71dcab2f71b0c6.tar.gz
Minor fixes
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21715)
Diffstat (limited to 'doc')
-rw-r--r--doc/designs/ddd/REPORT.md2
-rw-r--r--doc/designs/ddd/ddd-05-mem-nonblocking.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/designs/ddd/REPORT.md b/doc/designs/ddd/REPORT.md
index ce742507ce..195e834899 100644
--- a/doc/designs/ddd/REPORT.md
+++ b/doc/designs/ddd/REPORT.md
@@ -151,7 +151,7 @@ The originally planned changes to enable applications for QUIC amounted to:
- A change to how the `POLLIN`/`POLLOUT`/`POLLERR` flags to pass to poll(2)
need to be determined.
- Note that this is a subtantially smaller list of changes than for
+ Note that this is a substantially smaller list of changes than for
ddd-02-conn-nonblocking.
### Actual changes
diff --git a/doc/designs/ddd/ddd-05-mem-nonblocking.c b/doc/designs/ddd/ddd-05-mem-nonblocking.c
index 821e3fecba..abf6c3c496 100644
--- a/doc/designs/ddd/ddd-05-mem-nonblocking.c
+++ b/doc/designs/ddd/ddd-05-mem-nonblocking.c
@@ -189,9 +189,9 @@ int rx(APP_CONN *conn, void *buf, int buf_len)
/*
* Called to get data which has been enqueued for transmission to the network
- * by OpenSSL. For QUIC, this always outputs a single frame.
+ * by OpenSSL. For QUIC, this always outputs a single datagram.
*
- * IMPORTANT (QUIC): If buf_len is inadequate to hold the frame, it is truncated
+ * IMPORTANT (QUIC): If buf_len is inadequate to hold the datagram, it is truncated
* (similar to read(2)). A buffer size of at least 1472 must be used by default
* to guarantee this does not occur.
*/
@@ -203,7 +203,7 @@ int read_net_tx(APP_CONN *conn, void *buf, int buf_len)
/*
* Called to feed data which has been received from the network to OpenSSL.
*
- * QUIC: buf must contain the entirety of a single frame. It will be consumed
+ * QUIC: buf must contain the entirety of a single datagram. It will be consumed
* entirely (return value == buf_len) or not at all.
*/
int write_net_rx(APP_CONN *conn, const void *buf, int buf_len)