diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-24 14:44:24 +0100 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2013-12-24 14:44:24 +0100 |
commit | b42487744871ab4587edabe2a3b87c9d26ac030f (patch) | |
tree | 41ae5c64d175d7909bd65d3147a162830b0d503d /src/WebAdmin.h | |
parent | Added the list_item.xml (diff) | |
download | cuberite-b42487744871ab4587edabe2a3b87c9d26ac030f.tar cuberite-b42487744871ab4587edabe2a3b87c9d26ac030f.tar.gz cuberite-b42487744871ab4587edabe2a3b87c9d26ac030f.tar.bz2 cuberite-b42487744871ab4587edabe2a3b87c9d26ac030f.tar.lz cuberite-b42487744871ab4587edabe2a3b87c9d26ac030f.tar.xz cuberite-b42487744871ab4587edabe2a3b87c9d26ac030f.tar.zst cuberite-b42487744871ab4587edabe2a3b87c9d26ac030f.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; |