mirror of
https://repo.or.cz/socat.git
synced 2024-12-22 15:32:35 +00:00
Added option alias name dhparams
This commit is contained in:
parent
9f41543aad
commit
a9f36eb7b7
2 changed files with 6 additions and 0 deletions
4
CHANGES
4
CHANGES
|
@ -43,6 +43,10 @@ corrections:
|
|||
and therefore were useless.
|
||||
Thanks to Steve Borenstein for reporting this issue.
|
||||
|
||||
Option dhparam was documented as dhparams. Added the alias name
|
||||
dhparams to fix this.
|
||||
Thanks to Alexander Neumann for sending a patch.
|
||||
|
||||
porting:
|
||||
Type conflict between int and sig_atomic_t between declaration and
|
||||
definition of diag_immediate_type and diag_immediate_exit broke
|
||||
|
|
|
@ -375,6 +375,7 @@ const struct optname optionnames[] = {
|
|||
#endif
|
||||
IF_OPENSSL("dh", &opt_openssl_dhparam)
|
||||
IF_OPENSSL("dhparam", &opt_openssl_dhparam)
|
||||
IF_OPENSSL("dhparams", &opt_openssl_dhparam)
|
||||
#ifdef O_DIRECT
|
||||
IF_OPEN ("direct", &opt_o_direct)
|
||||
#endif
|
||||
|
@ -1102,6 +1103,7 @@ const struct optname optionnames[] = {
|
|||
IF_OPENSSL("openssl-compress", &opt_openssl_compress)
|
||||
#endif
|
||||
IF_OPENSSL("openssl-dhparam", &opt_openssl_dhparam)
|
||||
IF_OPENSSL("openssl-dhparams", &opt_openssl_dhparam)
|
||||
IF_OPENSSL("openssl-egd", &opt_openssl_egd)
|
||||
#if WITH_FIPS
|
||||
IF_OPENSSL("openssl-fips", &opt_openssl_fips)
|
||||
|
|
Loading…
Reference in a new issue