From: Russ Combs (rucombs) Date: Tue, 19 Apr 2022 13:49:44 +0000 (+0000) Subject: Pull request #3381: framework: make Cursor SO_PUBLIC X-Git-Tag: 3.1.28.0~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef1627434b39f3d9b22ba1584a6c3c721a0a6d53;p=thirdparty%2Fsnort3.git Pull request #3381: framework: make Cursor SO_PUBLIC Merge in SNORT/snort3 from ~KATHARVE/snort3:cursor_so_public to master Squashed commit of the following: commit e207201c711459aea2eea09b796000d421b2ce93 Author: Katura Harvey Date: Mon Apr 18 16:01:55 2022 -0400 framework: make Cursor SO_PUBLIC --- diff --git a/src/framework/cursor.h b/src/framework/cursor.h index 679a11a0e..f5362a204 100644 --- a/src/framework/cursor.h +++ b/src/framework/cursor.h @@ -29,6 +29,8 @@ #include #include +#include "main/snort_types.h" + namespace snort { struct Packet; @@ -52,7 +54,7 @@ private: unsigned id; }; -class Cursor +class SO_PUBLIC Cursor { public: Cursor() = default;