mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
fixed type mismatch for ssl_certificate_request event
This commit is contained in:
parent
b16195d130
commit
9560e38784
3 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ redef record SSL::Info += {
|
|||
requested_client_certificate_authorities: vector of string &optional &log;
|
||||
};
|
||||
|
||||
event ssl_certificate_request(c: connection, is_client: bool, certificate_types: index_vec, supported_signature_algorithms: SSL::SignatureAndHashAlgorithm, certificate_authorities: string_vec)
|
||||
event ssl_certificate_request(c: connection, is_client: bool, certificate_types: index_vec, supported_signature_algorithms: signature_and_hashalgorithm_vec, certificate_authorities: string_vec)
|
||||
{
|
||||
if ( is_client )
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue