summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-02-01 17:39:36 +0000
committerHugo Landau <hlandau@openssl.org>2024-04-19 09:33:54 +0100
commit11b94709c4d84d9b61c658b246f876b0797c95dd (patch)
treef1e1681a8184864aa1e1b7d504c88d8a035236bf
parentdd753de684aa94f5c6fa54589a9d855e716d1c97 (diff)
QUIC Polling Design: minor fixups
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23455)
-rw-r--r--doc/designs/quic-design/server/quic-polling.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/designs/quic-design/server/quic-polling.md b/doc/designs/quic-design/server/quic-polling.md
index 802fdf48d7..04ae9d7aa8 100644
--- a/doc/designs/quic-design/server/quic-polling.md
+++ b/doc/designs/quic-design/server/quic-polling.md
@@ -217,7 +217,7 @@ specifying a SSL object pointer:
#define BIO_POLL_DESCRIPTOR_SSL 2 /* (SSL *) */
typedef struct bio_poll_descriptor_st {
- int type;
+ uint32_t type;
union {
...
SSL *ssl;
@@ -696,8 +696,8 @@ SSL_as_poll_descriptor(SSL *s)
{
BIO_POLL_DESCRIPTOR d;
- d.type = BIO_POLL_DESCRIPTOR_TYPE_SSL;
- d.ssl = s;
+ d.type = BIO_POLL_DESCRIPTOR_TYPE_SSL;
+ d.value.ssl = s;
return d;
}