diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-05-29 21:11:16 +0300 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-05-29 21:11:16 +0300 |
commit | 63611932ebae93620386b26cfa82f7c4552b22ff (patch) | |
tree | 57c065bebf3ba53857dbed80e48cf67cd7e63038 /src/server.h | |
parent | 99c2ac0125f9bbae0a4b06e6e7145f76f4dfbbf4 (diff) | |
download | minetest-63611932ebae93620386b26cfa82f7c4552b22ff.tar.gz minetest-63611932ebae93620386b26cfa82f7c4552b22ff.tar.bz2 minetest-63611932ebae93620386b26cfa82f7c4552b22ff.zip |
player passwords and privileges in world/auth.txt
--HG--
extra : rebase_source : 7260636295d9068fbeeddf4143c89f2b8a91446c
Diffstat (limited to 'src/server.h')
-rw-r--r-- | src/server.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/server.h b/src/server.h index 54330856c..a6da801be 100644 --- a/src/server.h +++ b/src/server.h @@ -32,6 +32,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "porting.h" #include "map.h" #include "inventory.h" +#include "auth.h" /* Some random functions @@ -438,7 +439,8 @@ private: */ static void SendHP(con::Connection &con, u16 peer_id, u8 hp); - static void SendAccessDenied(con::Connection &con, u16 peer_id); + static void SendAccessDenied(con::Connection &con, u16 peer_id, + const std::wstring &reason); /* Non-static send methods @@ -514,6 +516,9 @@ private: JMutex m_con_mutex; // Connected clients (behind the con mutex) core::map<u16, RemoteClient*> m_clients; + + // User authentication + AuthManager m_authmanager; /* Threads |