2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * Author : Maxim Mamontov <faust@stg.dp.ua>
27 $Date: 2009/12/13 12:56:07 $
32 #include "stg/plugin.h"
33 #include "stg/module_settings.h"
34 #include "stg/logger.h"
40 #include <unistd.h> // close
42 #define VERSION "cap_nf v. 0.4"
58 class NF_CAP : public STG::Plugin {
62 void SetTraffcounter(STG::TraffCounter * tc) override { traffCnt = tc; }
63 void SetSettings(const STG::ModuleSettings & s) override { settings = s; }
64 int ParseSettings() override;
68 int Reload(const STG::ModuleSettings & /*ms*/) override { return 0; }
70 bool IsRunning() override { return runningTCP || runningUDP; }
71 const std::string & GetStrError() const override { return errorStr; }
72 std::string GetVersion() const override { return VERSION; }
73 uint16_t GetStartPosition() const override { return START_POS; }
74 uint16_t GetStopPosition() const override { return STOP_POS; }
77 NF_CAP(const NF_CAP & rvalue);
78 NF_CAP & operator=(const NF_CAP & rvalue);
80 STG::TraffCounter * traffCnt;
81 STG::ModuleSettings settings;
92 mutable std::string errorStr;
93 STG::PluginLogger logger;
95 static void * RunUDP(void *);
96 static void * RunTCP(void *);
97 void ParseBuffer(uint8_t * buf, ssize_t size);
101 void CloseTCP() { close(sockTCP); }
102 void CloseUDP() { close(sockUDP); }