diff options
author | jsing <> | 2020-02-01 11:38:35 +0000 |
---|---|---|
committer | jsing <> | 2020-02-01 11:38:35 +0000 |
commit | 16cac1a43ec7f34bc4a6757634666d64fd41c20d (patch) | |
tree | 1fd5c501fd06c5d8f2411fa9034ad6dfcafa922a /src | |
parent | 24bfdec58b7ef34d27dd08e7e09e3bfa4385bada (diff) | |
download | openbsd-16cac1a43ec7f34bc4a6757634666d64fd41c20d.tar.gz openbsd-16cac1a43ec7f34bc4a6757634666d64fd41c20d.tar.bz2 openbsd-16cac1a43ec7f34bc4a6757634666d64fd41c20d.zip |
Disable TLSv1.3 client while some known issues are being addressed.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 476381c165..8548304d3c 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.259 2020/01/30 17:09:23 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.260 2020/02/01 11:38:35 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 | * |
@@ -186,9 +186,11 @@ __BEGIN_HIDDEN_DECLS | |||
186 | #define s2n(s,c) ((c[0]=(unsigned char)(((s)>> 8)&0xff), \ | 186 | #define s2n(s,c) ((c[0]=(unsigned char)(((s)>> 8)&0xff), \ |
187 | c[1]=(unsigned char)(((s) )&0xff)),c+=2) | 187 | c[1]=(unsigned char)(((s) )&0xff)),c+=2) |
188 | 188 | ||
189 | #if 0 | ||
189 | #ifndef LIBRESSL_HAS_TLS1_3_CLIENT | 190 | #ifndef LIBRESSL_HAS_TLS1_3_CLIENT |
190 | #define LIBRESSL_HAS_TLS1_3_CLIENT | 191 | #define LIBRESSL_HAS_TLS1_3_CLIENT |
191 | #endif | 192 | #endif |
193 | #endif | ||
192 | 194 | ||
193 | #if defined(LIBRESSL_HAS_TLS1_3_CLIENT) || defined(LIBRESSL_HAS_TLS1_3_SERVER) | 195 | #if defined(LIBRESSL_HAS_TLS1_3_CLIENT) || defined(LIBRESSL_HAS_TLS1_3_SERVER) |
194 | #define LIBRESSL_HAS_TLS1_3 | 196 | #define LIBRESSL_HAS_TLS1_3 |