Rename SSL to TLS (fix #3013)

This commit is contained in:
Alfredo Cardigliano 2019-11-15 12:40:01 +01:00
parent 84178c4fa1
commit e38835a603
27 changed files with 247 additions and 252 deletions

View file

@ -1380,8 +1380,8 @@ function flowinfo2hostname(flow_info, host_type, alerts_view)
-- remove possible ports from the name
return(flow_info["host_server_name"]:gsub(":%d+$", ""))
end
if(flow_info["protos.ssl.certificate"] ~= nil and flow_info["protos.ssl.certificate"] ~= "") then
return(flow_info["protos.ssl.certificate"])
if(flow_info["protos.tls.certificate"] ~= nil and flow_info["protos.tls.certificate"] ~= "") then
return(flow_info["protos.tls.certificate"])
end
end