summaryrefslogtreecommitdiffstats
path: root/src/detect-engine-siggroup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/detect-engine-siggroup.h')
-rw-r--r--src/detect-engine-siggroup.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/detect-engine-siggroup.h b/src/detect-engine-siggroup.h
new file mode 100644
index 0000000..d4c9e93
--- /dev/null
+++ b/src/detect-engine-siggroup.h
@@ -0,0 +1,63 @@
+/* Copyright (C) 2007-2010 Open Information Security Foundation
+ *
+ * You can copy, redistribute or modify this Program under the terms of
+ * the GNU General Public License version 2 as published by the Free
+ * Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * version 2 along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+/**
+ * \file
+ *
+ * \author Victor Julien <victor@inliniac.net>
+ */
+
+#ifndef __DETECT_ENGINE_SIGGROUP_H__
+#define __DETECT_ENGINE_SIGGROUP_H__
+
+int SigGroupHeadAppendSig(const DetectEngineCtx *, SigGroupHead **, const Signature *);
+int SigGroupHeadClearSigs(SigGroupHead *);
+int SigGroupHeadCopySigs(DetectEngineCtx *, SigGroupHead *, SigGroupHead **);
+
+void SigGroupHeadFree(const DetectEngineCtx *de_ctx, SigGroupHead *);
+
+SigGroupHead *SigGroupHeadHashLookup(DetectEngineCtx *, SigGroupHead *);
+
+int SigGroupHeadHashAdd(DetectEngineCtx *, SigGroupHead *);
+
+void SigGroupHeadHashFree(DetectEngineCtx *);
+
+int SigGroupHeadHashInit(DetectEngineCtx *);
+
+int SigGroupHeadHashRemove(DetectEngineCtx *, SigGroupHead *);
+
+void SigGroupHeadInitDataFree(SigGroupHeadInitData *sghid);
+void SigGroupHeadSetSigCnt(SigGroupHead *sgh, uint32_t max_idx);
+void SigGroupHeadSetProtoAndDirection(SigGroupHead *sgh,
+ uint8_t ipproto, int dir);
+int SigGroupHeadBuildMatchArray(DetectEngineCtx *de_ctx, SigGroupHead *sgh, uint32_t max_idx);
+
+int SigGroupHeadContainsSigId (DetectEngineCtx *de_ctx, SigGroupHead *sgh,
+ uint32_t sid);
+
+void SigGroupHeadRegisterTests(void);
+void SigGroupHeadPrintSigs(DetectEngineCtx *de_ctx, SigGroupHead *sgh);
+
+void SigGroupHeadStore(DetectEngineCtx *, SigGroupHead *);
+void SigGroupHeadSetFilemagicFlag(DetectEngineCtx *, SigGroupHead *);
+void SigGroupHeadSetFilestoreCount(DetectEngineCtx *, SigGroupHead *);
+void SigGroupHeadSetFileHashFlag(DetectEngineCtx *, SigGroupHead *);
+void SigGroupHeadSetFilesizeFlag(DetectEngineCtx *, SigGroupHead *);
+
+int SigGroupHeadBuildNonPrefilterArray(DetectEngineCtx *de_ctx, SigGroupHead *sgh);
+
+#endif /* __DETECT_ENGINE_SIGGROUP_H__ */