]> git.ipfire.org Git - thirdparty/snort3.git/commitdiff
make distcheck fixes
authorJosh <jrosenba@cisco.com>
Wed, 8 Oct 2014 17:09:00 +0000 (12:09 -0500)
committerJosh <jrosenba@cisco.com>
Wed, 8 Oct 2014 17:09:00 +0000 (12:09 -0500)
src/framework/CMakeLists.txt
src/framework/Makefile.am
src/main/policy.h
src/protocols/Makefile.am
src/stream/udp/CMakeLists.txt
src/stream/udp/Makefile.am
src/stream/udp/stream_udp.cc
src/utils/CMakeLists.txt
src/utils/Makefile.am
tools/snort2lua/Makefile.am

index 216530b7283862c0a0c7e034eee023ce92e03d07..c1702df188851b10adfd0a72eb1af7862c93316b 100644 (file)
@@ -9,6 +9,7 @@ set (FRAMEWORK_INCLUDES
     decode_data.h
     logger.h
     inspector.h
+    ips_action.h
     ips_option.h
     module.h
     mpse.h
index 45ce110305097cb6a80a6af30f59308e18cd9c70..9bba0836c8e88563e32254f9a3e697389d379782 100644 (file)
@@ -13,6 +13,7 @@ cursor.h \
 decode_data.h \
 logger.h \
 inspector.h \
+ips_action.h \
 ips_option.h \
 module.h \
 mpse.h \
index dba484aeb58418466232faa8bd823b3880290dab..2d6421d600325e1ac27b039fe83479d8b95d8734 100644 (file)
@@ -24,6 +24,8 @@
 #include <string>
 #include <vector>
 
+#include "main/snort_types.h"
+
 struct PortTable;
 struct vartable_t;
 struct sfip_var_t;
@@ -169,9 +171,10 @@ public:  // FIXTHIS-H make impl private
 //-------------------------------------------------------------------------
 
 // FIXIT-L may be inlined at some point; on lockdown for now
-NetworkPolicy* get_network_policy();
-InspectionPolicy* get_inspection_policy();
-IpsPolicy* get_ips_policy();
+// FIXIT-L SO_PUBLIC requierd because ScInlineMode(), etc. uses the function
+SO_PUBLIC NetworkPolicy* get_network_policy();
+SO_PUBLIC InspectionPolicy* get_inspection_policy();
+SO_PUBLIC IpsPolicy* get_ips_policy();
 
 void set_network_policy(NetworkPolicy*);
 void set_inspection_policy(InspectionPolicy*);
index c6be1bfad6f9219dddcb4ff9888fd71776f8f971..0eda8325a564ef9e73f5ca27f256bfccf8f07b8f 100644 (file)
@@ -16,6 +16,7 @@ ipv4_options.h \
 ipv6.h \
 gre.h \
 layer.h \
+linux_sll.h \
 mpls.h \
 packet.h \
 packet_manager.h \
index e805766a7c445affb7e0b2609393efbec762559f..ec736e937b3a13a343829575738da593315c87c7 100644 (file)
@@ -5,6 +5,6 @@ add_library( stream_udp STATIC
     udp_module.cc
     udp_module.h
     udp_session.cc
-    udp_session.cc
+    udp_session.h
 )
 
index 4c101599bee17283e8b38d56439f5b9b8fff856d..96b3088703aca3113087269cda5685d4c0c74d51 100644 (file)
@@ -8,7 +8,7 @@ stream_udp.h \
 udp_module.cc \
 udp_module.h \
 udp_session.cc \
-udp_session.cc
+udp_session.h
 
 AM_CXXFLAGS = @AM_CXXFLAGS@
 
index b4af05cb533a46f3e08f290a98a2afb8e33de713..1b4dd44e0f9ef23c69e776fb068f7a78439ef597 100644 (file)
@@ -27,7 +27,7 @@
 
 #include "stream_udp.h"
 #include "udp_module.h"
-#include "udp_session.h"
+#include "stream/udp/udp_session.h"
 #include "log/messages.h"
 #include "protocols/packet.h"
 
index aaa77679c7888784d87b9ac34c4dffd1862d3dad..c0da696dd5b1ddf799dcf503aff3df063328b996 100644 (file)
@@ -15,6 +15,7 @@ endif ( BUILD_SNPRINTF )
 set( UTIL_INCLUDES
     bitop.h
     bitop_funcs.h
+    dnet_header.h
     segment_mem.h
     sflsq.h
     sfmemcap.h
index 46019ebf0cf66e361f2940ae533238694d43e332..e376f85bcd45606b8a7e3a45682bac96b0ebabbb 100644 (file)
@@ -7,6 +7,7 @@ x_includedir = $(pkgincludedir)/utils
 x_include_HEADERS = \
 bitop.h \
 bitop_funcs.h \
+dnet_header.h \
 segment_mem.h \
 sflsq.h \
 sfmemcap.h \
index 6264ceb6115e9e1e0b347bc7780845b23df756c0..14bbe4765c9cc1b6e2c9b1d29abfcd36717a4a4c 100644 (file)
@@ -4,6 +4,7 @@ bin_PROGRAMS = snort2lua
 
 snort2lua_SOURCES = \
 conversion_state.h \
+conversion_defines.h \
 init_state.h \
 snort2lua.cc \
 init_state.cc