From: Shibin K V (shikv) Date: Sat, 9 Dec 2023 17:19:17 +0000 (+0000) Subject: Pull request #4136: appid: add http3 to the list of ssl protocols as http3 will alway... X-Git-Tag: 3.1.77.0~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9619f7713030f71341cef683a12a71f02438c2df;p=thirdparty%2Fsnort3.git Pull request #4136: appid: add http3 to the list of ssl protocols as http3 will always be inside quic and encrypted Merge in SNORT/snort3 from ~SHIKV/snort3:quic_url_si_multi to master Squashed commit of the following: commit 80c701e650b7ff9adc82a93ace1b5790e9586625 Author: shibin k v Date: Thu Dec 7 21:20:44 2023 +0000 appid: add http3 to the list of ssl protocols as http3 will always be inside quic and encrypted --- diff --git a/src/network_inspectors/appid/service_plugins/service_ssl.cc b/src/network_inspectors/appid/service_plugins/service_ssl.cc index d103efb28..bc039b92c 100644 --- a/src/network_inspectors/appid/service_plugins/service_ssl.cc +++ b/src/network_inspectors/appid/service_plugins/service_ssl.cc @@ -613,6 +613,7 @@ bool is_service_over_ssl(AppId appId) case APP_ID_SF_APPLIANCE_MGMT: case APP_ID_SSL: case APP_ID_QUIC: + case APP_ID_HTTP3: return true; }