summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-02-15 09:14:41 +0000
committerHugo Landau <hlandau@openssl.org>2024-03-07 23:48:49 +0000
commit5f02bbd5a6e7157faefb944ac5f11e0f6b024740 (patch)
tree9913be5cf876c899f27332056bd08388848fc8f9 /include
parentc38558357de693ac9807d42c5f700ee59de7f20d (diff)
QUIC: Define error code for stateless reset
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23598)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/quic.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/openssl/quic.h b/include/openssl/quic.h
index 853b944316..f66d643261 100644
--- a/include/openssl/quic.h
+++ b/include/openssl/quic.h
@@ -58,6 +58,10 @@ __owur const SSL_METHOD *OSSL_QUIC_client_thread_method(void);
# define OSSL_QUIC_ERR_CRYPTO_ERR(X) \
(OSSL_QUIC_ERR_CRYPTO_ERR_BEGIN + (X))
+/* Local errors. */
+# define OSSL_QUIC_LOCAL_ERR_IDLE_TIMEOUT \
+ ((uint64_t)0xFFFFFFFFFFFFFFFFULL)
+
# ifdef __cplusplus
}
# endif