From 95a6ee27b13fac95676072ea8d5765a822e4a90c Mon Sep 17 00:00:00 2001 From: Florian Wilkens Date: Fri, 7 May 2021 17:03:24 +0200 Subject: [PATCH] analyzer/ssl: silence warning in DTLS analyzer --- src/analyzer/protocol/ssl/DTLS.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/analyzer/protocol/ssl/DTLS.cc b/src/analyzer/protocol/ssl/DTLS.cc index faded0d56d..95f6d5471b 100644 --- a/src/analyzer/protocol/ssl/DTLS.cc +++ b/src/analyzer/protocol/ssl/DTLS.cc @@ -75,6 +75,7 @@ void DTLS_Analyzer::SendHandshake(uint16_t raw_tls_version, uint8_t msg_type, ui bool DTLS_Analyzer::TryDecryptApplicationData(int len, const u_char* data, bool is_orig, uint8_t content_type, uint16_t raw_tls_version) { // noop for now as DTLS decryption is currently not supported + return false; } } // namespace zeek::analyzer::dtls