mirror of https://github.com/OISF/suricata
http_header: remove old files
parent
2bb0cae05a
commit
5ee68ca2b2
@ -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;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @}
|
|
||||||
*/
|
|
@ -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__ */
|
|
Loading…
Reference in New Issue