You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
624 B

  1. From 70cef63e0c0ec15016cf7c52d5183ed864cc50c4 Mon Sep 17 00:00:00 2001
  2. From: Toni Uhlig <matzeton@googlemail.com>
  3. Date: Sun, 20 Sep 2020 13:58:05 +0200
  4. Subject: [PATCH] Disable non IANA TLS extensions.
  5. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
  6. ---
  7. openssl_clienthello.c | 2 ++
  8. 1 file changed, 2 insertions(+)
  9. --- a/openssl_clienthello.c
  10. +++ b/openssl_clienthello.c
  11. @@ -93,7 +93,9 @@ static struct lookup_table_element_t kno
  12. ELEMENT(TLSEXT_TYPE_certificate_authorities),
  13. #endif
  14. ELEMENT(TLSEXT_TYPE_renegotiate),
  15. +#ifndef OPENSSL_NO_NEXTPROTONEG
  16. ELEMENT(TLSEXT_TYPE_next_proto_neg),
  17. +#endif
  18. { 0 }
  19. };