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/WebAdmin.h | |
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/WebAdmin.h')
-rw-r--r-- | src/WebAdmin.h | 6 |
1 files changed, 6 insertions, 0 deletions
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; |