MINOR: ssl: activate sigalgs feature for AWS-LC
AWSLC lacks the SSL_CTX_set1_sigalgs_list define, however the function exists, which disables the feature in HAProxy, even if we could have build with it. SSL_CTX_set1_client_sigalgs_list() is not available, though. This patch introduce the define so the feature is enabled.
This commit is contained in:
parent
ed9b8fec49
commit
30a432d198
|
@ -50,6 +50,7 @@
|
|||
|
||||
#if defined(USE_OPENSSL_AWSLC)
|
||||
#define OPENSSL_NO_DH
|
||||
#define SSL_CTX_set1_sigalgs_list SSL_CTX_set1_sigalgs_list
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue