diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-12-24 17:20:55 +0100 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-12-24 17:20:55 +0100 |
commit | 9e5e4156747f308ff3bc5da4b14a1c5dd4d7fca5 (patch) | |
tree | 2fbb60615fa5f1ea1d4b6378b7cf9c7c76f718b7 /src | |
parent | Merge pull request #468 from mc-server/colourchange (diff) | |
parent | Removed unneeded include. (diff) | |
download | cuberite-9e5e4156747f308ff3bc5da4b14a1c5dd4d7fca5.tar cuberite-9e5e4156747f308ff3bc5da4b14a1c5dd4d7fca5.tar.gz cuberite-9e5e4156747f308ff3bc5da4b14a1c5dd4d7fca5.tar.bz2 cuberite-9e5e4156747f308ff3bc5da4b14a1c5dd4d7fca5.tar.lz cuberite-9e5e4156747f308ff3bc5da4b14a1c5dd4d7fca5.tar.xz cuberite-9e5e4156747f308ff3bc5da4b14a1c5dd4d7fca5.tar.zst cuberite-9e5e4156747f308ff3bc5da4b14a1c5dd4d7fca5.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/WebAdmin.cpp | 6 | ||||
-rw-r--r-- | src/WebAdmin.h | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/WebAdmin.cpp b/src/WebAdmin.cpp index 462702893..a1f0842aa 100644 --- a/src/WebAdmin.cpp +++ b/src/WebAdmin.cpp @@ -100,10 +100,10 @@ bool cWebAdmin::Init(void) LOGD("Initialising WebAdmin..."); - AString PortsIPv4 = m_IniFile.GetValueSet("WebAdmin", "Port", "8080"); - AString PortsIPv6 = m_IniFile.GetValueSet("WebAdmin", "PortsIPv6", ""); + m_PortsIPv4 = m_IniFile.GetValueSet("WebAdmin", "Port", "8080"); + m_PortsIPv6 = m_IniFile.GetValueSet("WebAdmin", "PortsIPv6", ""); - if (!m_HTTPServer.Initialize(PortsIPv4, PortsIPv6)) + if (!m_HTTPServer.Initialize(m_PortsIPv4, m_PortsIPv6)) { return false; } diff --git a/src/WebAdmin.h b/src/WebAdmin.h index c629d44ff..0907e7bc3 100644 --- a/src/WebAdmin.h +++ b/src/WebAdmin.h @@ -132,6 +132,9 @@ public: /// Escapes text passed into it, so it can be embedded into html. static AString GetHTMLEscapedString(const AString & a_Input); + AString GetIPv4Ports(void) const { return m_PortsIPv4; } + AString GetIPv6Ports(void) const { return m_PortsIPv6; } + // tolua_end /// Returns the prefix needed for making a link point to the webadmin root from the given URL ("../../../webadmin"-style) @@ -180,6 +183,9 @@ protected: PluginList m_Plugins; + AString m_PortsIPv4; + AString m_PortsIPv6; + /// The Lua template script to provide templates: cLuaState m_TemplateScript; |