X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e5499c61083684b28bcbc6950aae66cbf0938703..e9ae1f101b5418c0ba2e6c9d86b23c12f0140982:/stargazer/plugins/other/radius/config.h diff --git a/stargazer/plugins/other/radius/config.h b/stargazer/plugins/other/radius/config.h index 0e6547a1..cae7226d 100644 --- a/stargazer/plugins/other/radius/config.h +++ b/stargazer/plugins/other/radius/config.h @@ -18,8 +18,7 @@ * Author : Maxim Mamontov */ -#ifndef __STG_RADIUS_CONFIG_H__ -#define __STG_RADIUS_CONFIG_H__ +#pragma once #include "stg/module_settings.h" @@ -30,11 +29,11 @@ #include // uid_t, gid_t #include // mode_t -class USER; - namespace STG { +struct User; + struct Config { typedef std::map Pairs; @@ -59,7 +58,7 @@ struct Config Authorize() : m_auth(false) {} Authorize(const Pairs& cond) : m_auth(true), m_cond(cond) {} - bool check(const USER& user, const Pairs& radiusData) const; + bool check(const User& user, const Pairs& radiusData) const; bool exists() const { return m_auth; } private: bool m_auth; @@ -68,7 +67,7 @@ struct Config struct Section { - Section() {} + Section() = default; Section(const Pairs& ma, const Pairs& mo, const Pairs& re, ReturnCode code, const Authorize& auth) : match(ma), modify(mo), reply(re), returnCode(code), authorize(auth) {} Pairs match; @@ -78,8 +77,8 @@ struct Config Authorize authorize; }; - Config() {} - Config(const MODULE_SETTINGS& settings); + Config() = default; + Config(const ModuleSettings& settings); Section autz; Section auth; @@ -102,5 +101,3 @@ struct Config }; } // namespace STG - -#endif