X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/641204dfbdb9fc870cdd2e7f9e3169a44693e7bf..30723e4545227800cd3b43f2423f6760b1e4e22d:/projects/stargazer/plugins/capture/divert_freebsd/divert_cap.h diff --git a/projects/stargazer/plugins/capture/divert_freebsd/divert_cap.h b/projects/stargazer/plugins/capture/divert_freebsd/divert_cap.h index 84234219..b463e328 100644 --- a/projects/stargazer/plugins/capture/divert_freebsd/divert_cap.h +++ b/projects/stargazer/plugins/capture/divert_freebsd/divert_cap.h @@ -27,42 +27,45 @@ $Date: 2009/06/23 11:32:27 $ #ifndef DIVERT_CAP_H #define DIVERT_CAP_H -#include #include -#include "base_plugin.h" -#include "base_settings.h" -#include "../../../traffcounter.h" +#include + +#include "plugin.h" +#include "module_settings.h" -using namespace std; +class USERS; +class TARIFFS; +class ADMINS; +class TRAFFCOUNTER; +class SETTINGS; -extern "C" BASE_PLUGIN * GetPlugin(); +extern "C" PLUGIN * GetPlugin(); //----------------------------------------------------------------------------- -class DIVERT_CAP :public BASE_PLUGIN -{ +class DIVERT_CAP : public PLUGIN { public: DIVERT_CAP(); - virtual ~DIVERT_CAP(){}; + virtual ~DIVERT_CAP() {} - void SetUsers(USERS *){}; - void SetTariffs(TARIFFS *){}; - void SetAdmins(ADMINS *){}; - void SetTraffcounter(TRAFFCOUNTER * tc); - void SetStore(BASE_STORE *){}; - void SetStgSettings(const SETTINGS *){}; + void SetUsers(USERS *) {} + void SetTariffs(TARIFFS *) {} + void SetAdmins(ADMINS *) {} + void SetTraffcounter(TRAFFCOUNTER * tc) { traffCnt = tc; } + void SetStore(STORE *) {} + void SetStgSettings(const SETTINGS *) {} int Start(); int Stop(); - int Reload() { return 0; }; - bool IsRunning(); + int Reload() { return 0; } + bool IsRunning() { return isRunning; } - void SetSettings(const MODULE_SETTINGS & s); + void SetSettings(const MODULE_SETTINGS & s) { settings = s; } int ParseSettings(); - const string & GetStrError() const; - const string GetVersion() const; - uint16_t GetStartPosition() const; - uint16_t GetStopPosition() const; + const std::string & GetStrError() const { return errorStr; } + const std::string GetVersion() const; + uint16_t GetStartPosition() const { return 10; } + uint16_t GetStopPosition() const { return 10; } private: static void * Run(void *); @@ -73,24 +76,21 @@ private: int DivertCapRead(char * buffer, int blen, char ** iface, int n); int DivertCapClose(); - int ParseIntInRange(const string & str, int min, int max, int * val); + int ParseIntInRange(const std::string & str, int min, int max, int * val); MODULE_SETTINGS settings; int port; - mutable string errorStr; + mutable std::string errorStr; pthread_t thread; bool nonstop; bool isRunning; - //int capSock; - TRAFFCOUNTER * traffCnt; }; //----------------------------------------------------------------------------- - #endif