diff options
| author | 2008-05-10 18:24:21 +0000 | |
|---|---|---|
| committer | 2008-05-10 18:24:21 +0000 | |
| commit | a3719e0ad57b0c98471f71899658906fa5a3aaac (patch) | |
| tree | e02928dc6f299a9d07a92154b6fd88df7867d685 /src/modules/m_httpd_stats.cpp | |
| parent | Give tons more information in the xml feed, should be enough to construct jus... (diff) | |
| download | inspircd++-a3719e0ad57b0c98471f71899658906fa5a3aaac.tar.gz inspircd++-a3719e0ad57b0c98471f71899658906fa5a3aaac.tar.bz2 inspircd++-a3719e0ad57b0c98471f71899658906fa5a3aaac.zip | |
Add ident, port, ip to user info in <user> tag
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9695 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
| -rw-r--r-- | src/modules/m_httpd_stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp index ed7223f20..9699ddca2 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -116,7 +116,7 @@ class ModuleHttpStats : public Module if (u->IsModeSet(n)) modes += n; - data << modes << "</modes>"; + data << modes << "</modes><ident>" << u->ident << "</ident><port>" << u->GetPort() << "</port><ipaddress>" << u->GetIPString() << "</ipaddress>"; data << "</user>"; } |
