]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
http_header: remove old files
authorVictor Julien <victor@inliniac.net>
Mon, 19 Dec 2016 13:43:59 +0000 (14:43 +0100)
committerVictor Julien <victor@inliniac.net>
Thu, 16 Feb 2017 09:35:41 +0000 (10:35 +0100)
src/Makefile.am
src/detect-engine-file.c
src/detect-engine-hhd.c [deleted file]
src/detect-engine-hhd.h [deleted file]
src/detect-engine-mpm.c
src/detect-http-header.c
src/detect.c
src/runmode-unittests.c

index 4617dfbf647e051ca7cffcbed2a9e08963617c5c..298eec7c43d04fad85df98a76b53cf7b089e0def 100644 (file)
@@ -115,7 +115,6 @@ detect-engine-file.c detect-engine-file.h \
 detect-engine-filedata-smtp.c detect-engine-filedata-smtp.h \
 detect-engine-hcbd.c detect-engine-hcbd.h \
 detect-engine-hcd.c detect-engine-hcd.h \
-detect-engine-hhd.c detect-engine-hhd.h \
 detect-engine-hhhd.c detect-engine-hhhd.h \
 detect-engine-hmd.c detect-engine-hmd.h \
 detect-engine-hrhd.c detect-engine-hrhd.h \
index 7db290d3e502950aeb8dad7e971ea6a281695d3e..9464799b4c05d445c2b42cb8c7d102c5911ec4e3 100644 (file)
@@ -34,7 +34,6 @@
 
 #include "detect-engine-uri.h"
 #include "detect-engine-hcbd.h"
-#include "detect-engine-hhd.h"
 #include "detect-engine-hrhd.h"
 #include "detect-engine-hmd.h"
 #include "detect-engine-hcd.h"
diff --git a/src/detect-engine-hhd.c b/src/detect-engine-hhd.c
deleted file mode 100644 (file)
index aab3c56..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-/* 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.
- */
-
-/**
- * \ingroup httplayer
- *
- * @{
- */
-
-
-/** \file
- *
- * \author Anoop Saldanha <anoopsaldanha@gmail.com>
- *
- * \brief Handle HTTP header match
- *
- */
-
-#include "suricata-common.h"
-#include "suricata.h"
-#include "decode.h"
-
-#include "detect.h"
-#include "detect-engine.h"
-#include "detect-engine-hhd.h"
-#include "detect-engine-mpm.h"
-#include "detect-parse.h"
-#include "detect-engine-state.h"
-#include "detect-engine-content-inspection.h"
-#include "detect-engine-prefilter.h"
-
-#include "flow-util.h"
-#include "util-debug.h"
-#include "util-print.h"
-#include "util-memcmp.h"
-#include "flow.h"
-
-#include "stream-tcp.h"
-
-#include "app-layer-parser.h"
-
-#include "util-unittest.h"
-#include "util-unittest-helper.h"
-#include "app-layer.h"
-#include "app-layer-htp.h"
-#include "app-layer-protos.h"
-
-#include "util-validate.h"
-
-/***********************************Unittests**********************************/
-
-#ifdef UNITTESTS
-
-#endif /* UNITTESTS */
-
-void DetectEngineHttpHeaderRegisterTests(void)
-{
-
-#ifdef UNITTESTS
-
-#endif /* UNITTESTS */
-
-    return;
-}
-/**
- * @}
- */
diff --git a/src/detect-engine-hhd.h b/src/detect-engine-hhd.h
deleted file mode 100644 (file)
index 86b9a85..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/* 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 Anoop Saldanha <anoopsaldanha@gmail.com>
- */
-
-#ifndef __DETECT_ENGINE_HHD_H__
-#define __DETECT_ENGINE_HHD_H__
-
-#include "app-layer-htp.h"
-
-#endif /* __DETECT_ENGINE_HHD_H__ */
index 069ea6306d9f66be86f8be8445b9952d46ac5264..40ec280f8e7965e6f0e5b1cbf9cd223a4fb96dac 100644 (file)
@@ -52,7 +52,6 @@
 #include "detect-engine-uri.h"
 #include "detect-engine-hrud.h"
 #include "detect-engine-hmd.h"
-#include "detect-engine-hhd.h"
 #include "detect-engine-hrhd.h"
 #include "detect-engine-hcd.h"
 #include "detect-engine-hua.h"
index a9f29d2a66081caf16fe848a0300a323caa2cb9c..fa65b9c062bb8ef5f7a302a02c91e333f950a0ec 100644 (file)
@@ -60,7 +60,6 @@
 
 #include "app-layer-htp.h"
 #include "detect-http-header.h"
-#include "detect-engine-hhd.h"
 #include "stream-tcp.h"
 
 static int DetectHttpHeaderSetup(DetectEngineCtx *, Signature *, char *);
index 19d2d9a49150eb97d6c57aae6624e19382d5ddca..37576ddc36dcba45d5b7c83e25614a67f53f90ac 100644 (file)
 #include "detect-http-response-line.h"
 #include "detect-engine-hcbd.h"
 #include "detect-engine-hsbd.h"
-#include "detect-engine-hhd.h"
 #include "detect-engine-hrhd.h"
 #include "detect-engine-hmd.h"
 #include "detect-engine-hcd.h"
index 17bdc4e975356dc4b96c8e010a7626b80557c53d..6d1632dc4e75b067b98ffc740a74160c651e5d8c 100644 (file)
@@ -38,7 +38,6 @@
 #include "detect-engine-uri.h"
 #include "detect-engine-hcbd.h"
 #include "detect-engine-hsbd.h"
-#include "detect-engine-hhd.h"
 #include "detect-engine-hrhd.h"
 #include "detect-engine-hmd.h"
 #include "detect-engine-hcd.h"