X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/ede91934442fd804d7b818971a44e3ad795cb01f..30723e4545227800cd3b43f2423f6760b1e4e22d:/projects/stargazer/plugins/authorization/ao/ao.h diff --git a/projects/stargazer/plugins/authorization/ao/ao.h b/projects/stargazer/plugins/authorization/ao/ao.h index 4c0c344a..05aa27a2 100644 --- a/projects/stargazer/plugins/authorization/ao/ao.h +++ b/projects/stargazer/plugins/authorization/ao/ao.h @@ -78,7 +78,7 @@ public: AUTH_AO(); virtual ~AUTH_AO(){}; - void SetUsers(USERS * u); + void SetUsers(USERS * u) { users = u; } void SetTariffs(TARIFFS *) {} void SetAdmins(ADMINS *) {} void SetTraffcounter(TRAFFCOUNTER *) {} @@ -88,13 +88,13 @@ public: int Start(); int Stop(); int Reload() { return 0; } - bool IsRunning(); - void SetSettings(const MODULE_SETTINGS & s); - int ParseSettings(); - const std::string & GetStrError() const; + bool IsRunning() { return isRunning; } + void SetSettings(const MODULE_SETTINGS &) {} + int ParseSettings() { return 0; } + const std::string & GetStrError() const { return errorStr; } const std::string GetVersion() const; - uint16_t GetStartPosition() const; - uint16_t GetStopPosition() const; + uint16_t GetStartPosition() const { return 70; } + uint16_t GetStopPosition() const { return 70; } void AddUser(USER_PTR u); void DelUser(USER_PTR u); @@ -116,18 +116,11 @@ private: bool isRunning; MODULE_SETTINGS settings; - /* - ÍÙ ÄÏÌÖÎÙ ÐÅÒÅÐÒÏ×ÅÒÉÔØ ×ÏÚÍÏÖÎÏÓÔØ Á×ÔÏÒÉÚÁÃÉÉ ÀÚÅÒÁ ÐÒÉ ÉÚÍÅÎÅÎÉÉ - ÓÌÅÄÕÀÝÉÈ ÅÇÏ ÐÁÒÁÍÅÔÒÏ×: - - alwaysOnline - - ips - */ + list > BeforeChgAONotifierList; + list > AfterChgAONotifierList; - list > BeforeChgAONotifierList; - list > AfterChgAONotifierList; - - list > BeforeChgIPNotifierList; - list > AfterChgIPNotifierList; + list > BeforeChgIPNotifierList; + list > AfterChgIPNotifierList; class ADD_USER_NONIFIER: public NOTIFIER_BASE { public: