mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 09:38:19 +00:00
analyzer/ssl: Formatting, printf -> DBG_LOG, namespacing
This commit is contained in:
parent
f73935aa45
commit
c1c0cb6f3c
3 changed files with 21 additions and 22 deletions
|
@ -53,14 +53,14 @@ event zeek_init()
|
|||
}
|
||||
}
|
||||
|
||||
event SSL::add_keys(client_random: string, keys: string)
|
||||
event SSL::add_keys(client_random: string, val: string)
|
||||
{
|
||||
SSL::keys[client_random] = keys;
|
||||
SSL::keys[client_random] = val;
|
||||
}
|
||||
|
||||
event SSL::add_secret(client_random: string, secret: string)
|
||||
event SSL::add_secret(client_random: string, val: string)
|
||||
{
|
||||
SSL::secrets[client_random] = secret;
|
||||
SSL::secrets[client_random] = val;
|
||||
}
|
||||
|
||||
event ssl_client_hello(c: connection, version: count, record_version: count, possible_ts: time, client_random: string, session_id: string, ciphers: index_vec, comp_methods: index_vec)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue