]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/ban.h
Fix synchronization issue at thread start
[dragonfireclient.git] / src / ban.h
index 529635c266b5f48a0b1aaac31df0bbbce6cf32ad..3e2ab7a877ec989882f5d5e0ec4099b530f45dbb 100644 (file)
--- a/src/ban.h
+++ b/src/ban.h
@@ -17,19 +17,19 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
-#ifndef BAN_HEADER
-#define BAN_HEADER
+#pragma once
 
+#include "util/string.h"
+#include "threading/thread.h"
+#include "exceptions.h"
 #include <map>
 #include <string>
-#include <jthread.h>
-#include <jmutex.h>
-#include "exceptions.h"
+#include <mutex>
 
 class BanManager
 {
 public:
-       BanManager(const std::string &bannfilepath);
+       BanManager(const std::string &banfilepath);
        ~BanManager();
        void load();
        void save();
@@ -40,12 +40,10 @@ class BanManager
        void add(const std::string &ip, const std::string &name);
        void remove(const std::string &ip_or_name);
        bool isModified();
-private:
-       JMutex m_mutex;
-       std::string m_banfilepath;
-       std::map<std::string, std::string> m_ips;
-       bool m_modified;
 
+private:
+       std::mutex m_mutex;
+       std::string m_banfilepath = "";
+       StringMap m_ips;
+       bool m_modified = false;
 };
-
-#endif