]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/other/radius/radius.h
Merge remote-tracking branch 'github/master'
[stg.git] / projects / stargazer / plugins / other / radius / radius.h
index 4cc84e264004cd28a53c5a0777b3a9dc4fc05190..4e06e463e581ec8ae91432a541f5a884b94a02ba 100644 (file)
@@ -1,7 +1,11 @@
 #pragma once
 
 #include "stg/auth.h"
+#include "stg/logger.h"
+
 #include <string>
+#include <mutex>
+#include <jthread.hpp>
 
 namespace STG
 {
@@ -10,12 +14,13 @@ namespace STG
         public:
             RADIUS();
 
-            int Start() override { return 0; }
-            int Stop() override { return 0; }
+            int Start() override;
+            int Stop() override;
             int Reload(const ModuleSettings & /*ms*/) override { return 0; }
-            bool IsRunning() override { return isRunning; }
+            bool IsRunning() override;
+            void SetRunning(bool val);
             int ParseSettings() override { return 0; }
-            const std::string & GetStrError() const override { return errorStr; }
+            const std::string & GetStrError() const override { return m_errorStr; }
             std::string GetVersion() const override;
             uint16_t GetStartPosition() const override { return 0; }
             uint16_t GetStopPosition() const override { return 0; }
@@ -23,8 +28,12 @@ namespace STG
             int SendMessage(const Message & msg, uint32_t ip) const override { return 0; }
 
         private:
-            mutable std::string errorStr;
-            bool isRunning;
+            std::mutex m_mutex;
+            mutable std::string m_errorStr;
+            std::jthread m_thread;
+            bool m_running;
+            PluginLogger m_logger;
 
+            int Run(std::stop_token token);
     };
 }