]> git.ipfire.org Git - thirdparty/snort3.git/commitdiff
tweaks
authorRuss Combs <rucombs@cisco.com>
Wed, 25 Jun 2014 14:59:41 +0000 (10:59 -0400)
committerRuss Combs <rucombs@cisco.com>
Wed, 25 Jun 2014 14:59:41 +0000 (10:59 -0400)
doc/tips.txt
src/events/event_wrapper.cc
src/events/event_wrapper.h

index 9f2e901f79a621d70b28ba0db33d5226d19f912c..21ef0b0f7245f9e8aa6b84ba799434a513fc0963 100644 (file)
@@ -81,7 +81,7 @@ The following pointers will help you get started:
         --enable-ha --prefix=/home/rcombs/install --enable-debug
         --enable-debug-msgs
 
-* examples/README explains how to build the example plugins.
+* extra/README explains how to build the example plugins.
 
 * if you want to build the documentation, you will need to install
   asciidoc.  you will also need dblatex to build the pdf manual.
index e8a7e7452ec78a092250f29e3c406a7e06248044..d358506ba497f7b4e14bc8ab783a38fd783bfdbc 100644 (file)
@@ -58,7 +58,7 @@
  * SnortEventqAdd() and SnortEventLog() functions - whichalready  route the events to
  * the fpLogEvent()function.
  */
-SO_PUBLIC uint32_t GenerateSnortEvent(Packet *p, uint32_t gid, uint32_t sid)
+uint32_t GenerateSnortEvent(Packet *p, uint32_t gid, uint32_t sid)
 {
     OptTreeNode *otn;
     RuleTreeNode *rtn;
index c9fd82d93aaded4418f030e7769cf6e71333f0b1..990b2a6df1c2c5c06645830023bd7fa628d6f64f 100644 (file)
@@ -26,7 +26,7 @@
 #include <stdint.h>
 #include "snort_types.h"
 
-SO_PUBLIC uint32_t GenerateSnortEvent(struct Packet *p, uint32_t gen_id, uint32_t sig_id);
+uint32_t GenerateSnortEvent(struct Packet *p, uint32_t gen_id, uint32_t sig_id);
 
 #endif