1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

Enable the TLSv1.3 server.

ok beck@ tb@
This commit is contained in:
jsing 2020-05-11 18:19:19 +00:00
parent 37720da156
commit 676765a2a3

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssl_locl.h,v 1.273 2020/05/10 14:17:47 jsing Exp $ */
/* $OpenBSD: ssl_locl.h,v 1.274 2020/05/11 18:19:19 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@ -173,6 +173,10 @@ __BEGIN_HIDDEN_DECLS
#define LIBRESSL_HAS_TLS1_3_CLIENT
#endif
#ifndef LIBRESSL_HAS_TLS1_3_SERVER
#define LIBRESSL_HAS_TLS1_3_SERVER
#endif
#if defined(LIBRESSL_HAS_TLS1_3_CLIENT) || defined(LIBRESSL_HAS_TLS1_3_SERVER)
#define LIBRESSL_HAS_TLS1_3
#endif