From: Vikash Ranjan (vikasran) Date: Thu, 25 Jan 2024 16:51:43 +0000 (+0000) Subject: Pull request #4161: mercury: updating alpn info without sni in 7.6 X-Git-Tag: 3.1.79.0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8661e80e45a7c331337ad2447c38b4378014b3de;p=thirdparty%2Fsnort3.git Pull request #4161: mercury: updating alpn info without sni in 7.6 Merge in SNORT/snort3 from ~VIKASRAN/snort3:vikash_work to master Squashed commit of the following: commit fecd5a2345c7a45cac943f3bb02bfdb95e87e2c3 Author: vikasran Date: Mon Dec 18 23:56:22 2023 +0530 mercury: updating alpn info without sni in 7.6 --- diff --git a/src/pub_sub/eve_process_event.h b/src/pub_sub/eve_process_event.h index 33f8c80c0..ad2213fba 100644 --- a/src/pub_sub/eve_process_event.h +++ b/src/pub_sub/eve_process_event.h @@ -31,6 +31,8 @@ public: EveProcessEvent(const snort::Packet& p, const char* server) : p(p), server_name(server) { } + EveProcessEvent(const snort::Packet& p) : p(p) { } + const snort::Packet* get_packet() const override { return &p; } const std::string& get_process_name() const