Merge in SNORT/snort3 from ~MURURAJA/snort3:SSL_inspector to master
Squashed commit of the following:
commit
1440bbda83b60bca597a8386fdd98f117de4f642
Author: mururaja <mururaja@cisco.com>
Date: Sat Jan 10 00:26:45 2026 -0800
ssl: SSL client hello event is published with empty hostname
SslClientHelloEvent event(client_hello_data.host_name, p);
DataBus::publish(pub_id, SslEventIds::CHELLO_SERVER_NAME, event);
}
+ else if (SSL_IS_CHELLO(new_flags))
+ {
+ SslClientHelloEvent event("", p);
+ DataBus::publish(pub_id, SslEventIds::CHELLO_SERVER_NAME, event);
+ }
if (server_cert.common_name != nullptr)
{