summaryrefslogtreecommitdiffstats
path: root/doc/designs
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-08-24 10:34:53 +0200
committerHugo Landau <hlandau@openssl.org>2023-08-25 12:04:00 +0100
commiteb1eaa9af4c241baea00cb16557f41811ed9e097 (patch)
treef2fa9859946cd0f6b610f1602f14e8b091f6e616 /doc/designs
parent86051eb2bb86e3a89e69abfb6419409aa701bcf7 (diff)
Always use uint8_t for TLS record type
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21823)
Diffstat (limited to 'doc/designs')
-rw-r--r--doc/designs/quic-design/record-layer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/designs/quic-design/record-layer.md b/doc/designs/quic-design/record-layer.md
index 8db4b319c5..172098b547 100644
--- a/doc/designs/quic-design/record-layer.md
+++ b/doc/designs/quic-design/record-layer.md
@@ -455,7 +455,7 @@ struct ossl_record_method_st {
* exit the record layer may update this to an alternative fragment size to
* be used. This must always be less than or equal to |maxfrag|.
*/
- size_t (*get_max_records)(OSSL_RECORD_LAYER *rl, int type, size_t len,
+ size_t (*get_max_records)(OSSL_RECORD_LAYER *rl, uint8_t type, size_t len,
size_t maxfrag, size_t *preffrag);
/*