diff options
Diffstat (limited to '')
-rw-r--r-- | src/Server.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Server.cpp b/src/Server.cpp index e707235a8..b0439391c 100644 --- a/src/Server.cpp +++ b/src/Server.cpp @@ -203,6 +203,11 @@ bool cServer::InitServer(cIniFile & a_SettingsIni) m_PlayerCount = 0; m_PlayerCountDiff = 0; + if (cFile::Exists("favicon.png")) + { + m_FaviconData = Base64Encode(cFile::ReadWholeFile("favicon.png")); + } + if (m_bIsConnected) { LOGERROR("ERROR: Trying to initialize server while server is already running!"); @@ -289,6 +294,15 @@ int cServer::GetNumPlayers(void) +const AString & cServer::GetFaviconData(void) const +{ + return m_FaviconData; +} + + + + + void cServer::PrepareKeys(void) { // TODO: Save and load key for persistence across sessions |