From eb1eaa9af4c241baea00cb16557f41811ed9e097 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Thu, 24 Aug 2023 10:34:53 +0200 Subject: Always use uint8_t for TLS record type Reviewed-by: Hugo Landau Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/21823) --- doc/designs/quic-design/record-layer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/designs') 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); /* -- cgit v1.2.3