diff options
author | jsing <> | 2020-05-11 18:19:19 +0000 |
---|---|---|
committer | jsing <> | 2020-05-11 18:19:19 +0000 |
commit | 8ed7843af36a6b4a5b8f87df523d65e1b6b58ee3 (patch) | |
tree | 8e8aa0394532e02ec13a917df76b3d899a62e194 /src | |
parent | 4cf93c5a292e0e4a92473a3afcad718b389900c5 (diff) | |
download | openbsd-8ed7843af36a6b4a5b8f87df523d65e1b6b58ee3.tar.gz openbsd-8ed7843af36a6b4a5b8f87df523d65e1b6b58ee3.tar.bz2 openbsd-8ed7843af36a6b4a5b8f87df523d65e1b6b58ee3.zip |
Enable the TLSv1.3 server.
ok beck@ tb@
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index e222348ea9..41ac3ca35a 100644 --- a/src/lib/libssl/ssl_locl.h +++ b/src/lib/libssl/ssl_locl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_locl.h,v 1.273 2020/05/10 14:17:47 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.274 2020/05/11 18:19:19 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -173,6 +173,10 @@ __BEGIN_HIDDEN_DECLS | |||
173 | #define LIBRESSL_HAS_TLS1_3_CLIENT | 173 | #define LIBRESSL_HAS_TLS1_3_CLIENT |
174 | #endif | 174 | #endif |
175 | 175 | ||
176 | #ifndef LIBRESSL_HAS_TLS1_3_SERVER | ||
177 | #define LIBRESSL_HAS_TLS1_3_SERVER | ||
178 | #endif | ||
179 | |||
176 | #if defined(LIBRESSL_HAS_TLS1_3_CLIENT) || defined(LIBRESSL_HAS_TLS1_3_SERVER) | 180 | #if defined(LIBRESSL_HAS_TLS1_3_CLIENT) || defined(LIBRESSL_HAS_TLS1_3_SERVER) |
177 | #define LIBRESSL_HAS_TLS1_3 | 181 | #define LIBRESSL_HAS_TLS1_3 |
178 | #endif | 182 | #endif |