mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +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;
|
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 )
|
if ( is_client )
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -708,5 +708,5 @@ event ssl_connection_flipped%(c: connection%);
|
||||||
##
|
##
|
||||||
## .. zeek:see:: ssl_handshake_message x509_certificate ssl_server_hello ssl_client_hello
|
## .. zeek:see:: ssl_handshake_message x509_certificate ssl_server_hello ssl_client_hello
|
||||||
## parse_distinguished_name
|
## parse_distinguished_name
|
||||||
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%);
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
@load base/protocols/ssl
|
@load base/protocols/ssl
|
||||||
@load base/protocols/mysql
|
@load base/protocols/mysql
|
||||||
|
|
||||||
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)
|
||||||
{
|
{
|
||||||
print certificate_types;
|
print certificate_types;
|
||||||
print supported_signature_algorithms;
|
print supported_signature_algorithms;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue