diff options
Diffstat (limited to '')
| -rw-r--r-- | src/usr.bin/openssl/s_server.c | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/usr.bin/openssl/s_server.c b/src/usr.bin/openssl/s_server.c index 12eb90699e..95fe633ef1 100644 --- a/src/usr.bin/openssl/s_server.c +++ b/src/usr.bin/openssl/s_server.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: s_server.c,v 1.57 2023/07/03 06:22:07 beck Exp $ */ | 1 | /* $OpenBSD: s_server.c,v 1.58 2023/07/03 08:03:56 beck 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 | * |
| @@ -770,15 +770,19 @@ static const struct option s_server_options[] = { | |||
| 770 | }, | 770 | }, |
| 771 | { | 771 | { |
| 772 | .name = "no_ssl2", | 772 | .name = "no_ssl2", |
| 773 | .type = OPTION_VALUE_OR, | 773 | .type = OPTION_DISCARD, |
| 774 | .opt.value = &cfg.off, | ||
| 775 | .value = SSL_OP_NO_SSLv2, | ||
| 776 | }, | 774 | }, |
| 777 | { | 775 | { |
| 778 | .name = "no_ssl3", | 776 | .name = "no_ssl3", |
| 779 | .type = OPTION_VALUE_OR, | 777 | .type = OPTION_DISCARD, |
| 780 | .opt.value = &cfg.off, | 778 | }, |
| 781 | .value = SSL_OP_NO_SSLv3, | 779 | { |
| 780 | .name = "no_tls1", | ||
| 781 | .type = OPTION_DISCARD, | ||
| 782 | }, | ||
| 783 | { | ||
| 784 | .name = "no_tls1_1", | ||
| 785 | .type = OPTION_DISCARD, | ||
| 782 | }, | 786 | }, |
| 783 | { | 787 | { |
| 784 | .name = "no_tls1_2", | 788 | .name = "no_tls1_2", |
