diff options
| author | beck <> | 2023-07-03 08:03:56 +0000 |
|---|---|---|
| committer | beck <> | 2023-07-03 08:03:56 +0000 |
| commit | f007bb66237d1c74d197b29b7001e712d543b019 (patch) | |
| tree | dcc2ea3e21aa9749377e3dd729e8c836773af256 /src/usr.bin/openssl/s_server.c | |
| parent | 1c347fef36ab1eb6f70ac25b75bb910e331ee288 (diff) | |
| download | openbsd-f007bb66237d1c74d197b29b7001e712d543b019.tar.gz openbsd-f007bb66237d1c74d197b29b7001e712d543b019.tar.bz2 openbsd-f007bb66237d1c74d197b29b7001e712d543b019.zip | |
Bring back no_tls1 and no_tls1_1 as undocumented silently discarded opitons
While I'm here, change the no_ssl2 and no_ssl3 options to use
OPTION_DISCARD as well instead of continuing to set a no-op
option flag.
ok jsing@ tb@
Diffstat (limited to 'src/usr.bin/openssl/s_server.c')
| -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", |
