From: Josh Date: Wed, 25 Jun 2014 18:16:52 +0000 (-0400) Subject: removing extra files X-Git-Tag: 3.0.0-233~1460^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00423098b00cfc68623c867bf939211b52cbeadd;p=thirdparty%2Fsnort3.git removing extra files --- diff --git a/src/codecs/root/cd_ieee80211_module.cc b/src/codecs/root/cd_ieee80211_module.cc deleted file mode 100644 index aa7996b79..000000000 --- a/src/codecs/root/cd_ieee80211_module.cc +++ /dev/null @@ -1,48 +0,0 @@ -/* -** Copyright (C) 2014 Cisco and/or its affiliates. All rights reserved. -** -** This program is free software; you can redistribute it and/or modify -** it under the terms of the GNU General Public License Version 2 as -** published by the Free Software Foundation. You may not use, modify or -** distribute this program under any other version of the GNU General -** Public License. -** -** 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 -** along with this program; if not, write to the Free Software -** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -*/ - -// cd_ieee8021_module.cc author Josh Rosenbaum - -#include "codecs/root/cd_ieee8021_module.h" - - -static const Parameter ieee80211_params[] = -{ - { nullptr, Parameter::PT_MAX, nullptr, nullptr, nullptr } -}; - - -static const RuleMap iee80211_rules[] = -{ - { DECODE_BAD_80211_ETHLLC, "(" CD_IEEE80211_NAME ") Bad 802.11 LLC header" }, - { DECODE_BAD_80211_OTHER, "(" CD_IEEE80211_NAME ") Bad 802.11 Extra LLC Info" }, - { 0, nullptr } -}; - -//------------------------------------------------------------------------- -// rpc module -//------------------------------------------------------------------------- - -Ieee80211Module::Ieee80211Module() : DecodeModule(CD_IEEE80211_NAME, ieee80211_params, iee80211_rules) -{ } - -bool Ieee80211Module::set(const char*, Value&, SnortConfig*) -{ - return true; -} diff --git a/src/codecs/root/cd_ieee80211_module.h b/src/codecs/root/cd_ieee80211_module.h deleted file mode 100644 index f672716d7..000000000 --- a/src/codecs/root/cd_ieee80211_module.h +++ /dev/null @@ -1,38 +0,0 @@ -/* -** Copyright (C) 2014 Cisco and/or its affiliates. All rights reserved. -** -** This program is free software; you can redistribute it and/or modify -** it under the terms of the GNU General Public License Version 2 as -** published by the Free Software Foundation. You may not use, modify or -** distribute this program under any other version of the GNU General -** Public License. -** -** 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 -** along with this program; if not, write to the Free Software -** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -*/ - -// cd_ieee8021_module.h author Josh Rosenbaum - -#ifndef CD_IEEE80211_MODULE_H -#define CD_IEEE80211_MODULE_H - -#include "codecs/decode_module.h" - - -#define CD_IEEE80211_NAME "codec_ieee80211" - -class Ieee80211Module : public DecodeModule -{ -public: - Ieee80211Module(); - - bool set(const char*, Value&, SnortConfig*); -}; - -#endif