summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-05-23 12:23:05 +0100
committerPauli <pauli@openssl.org>2023-06-16 09:26:27 +1000
commitb65b0d4ebe67ba9d53b96887b54ca9a0f5bf523e (patch)
treed873d844c4de956de7e95071bf237b110a08bdd6 /include
parenta3a51d6ec38a8c2fd88e7c64c2f21632e55cbbdf (diff)
QUIC TXP: Remove TX key update handling from TXP
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21029)
Diffstat (limited to 'include')
-rw-r--r--include/internal/quic_types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/internal/quic_types.h b/include/internal/quic_types.h
index 830c755779..6b86076ff8 100644
--- a/include/internal/quic_types.h
+++ b/include/internal/quic_types.h
@@ -67,6 +67,11 @@ static ossl_unused ossl_inline QUIC_PN ossl_quic_pn_min(QUIC_PN a, QUIC_PN b)
return a < b ? a : b;
}
+static ossl_unused ossl_inline int ossl_quic_pn_valid(QUIC_PN pn)
+{
+ return pn < (((QUIC_PN)1) << 62);
+}
+
/* QUIC connection ID representation. */
# define QUIC_MAX_CONN_ID_LEN 20