X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/5e6957abc520ebcba78b1bf5fccd5f257a1bd0a5..bfb8d7685e998fbcafcb5315b3c50a77760b7e48:/projects/stargazer/plugins/capture/ipq_linux/ipq_cap.cpp?ds=inline diff --git a/projects/stargazer/plugins/capture/ipq_linux/ipq_cap.cpp b/projects/stargazer/plugins/capture/ipq_linux/ipq_cap.cpp index 97b70a0b..7f60c7eb 100644 --- a/projects/stargazer/plugins/capture/ipq_linux/ipq_cap.cpp +++ b/projects/stargazer/plugins/capture/ipq_linux/ipq_cap.cpp @@ -25,6 +25,7 @@ #include "stg/raw_ip_packet.h" #include "stg/traffcounter.h" +#include "stg/plugin_creator.h" #include "ipq_cap.h" extern "C" @@ -32,35 +33,16 @@ extern "C" #include "libipq.h" } -class IPQ_CAP_CREATOR { -private: - IPQ_CAP * ic; - -public: - IPQ_CAP_CREATOR() - : ic(new IPQ_CAP()) - { - } - ~IPQ_CAP_CREATOR() - { - delete ic; - } - - IPQ_CAP * GetCapturer() - { - return ic; - } -}; //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- -IPQ_CAP_CREATOR icc; +PLUGIN_CREATOR icc; //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- PLUGIN * GetPlugin() { -return icc.GetCapturer(); +return icc.GetPlugin(); } //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- @@ -72,10 +54,13 @@ return "ipq_cap v.1.2"; //----------------------------------------------------------------------------- IPQ_CAP::IPQ_CAP() : ipq_h(NULL), + errorStr(), + thread(), nonstop(false), isRunning(false), capSock(-1), - traffCnt(NULL) + traffCnt(NULL), + buf() { memset(buf, 0, BUFSIZE); }