From 5c29c53f651fb0c513a50c9396e08ba340a6d2bf Mon Sep 17 00:00:00 2001
From: Peter Powell
Date: Sun, 7 Apr 2013 22:23:25 +0100
Subject: Convert ISUPPORT to use a map instead of a string.
---
src/modules/m_httpd_stats.cpp | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
(limited to 'src/modules/m_httpd_stats.cpp')
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp
index 3af9ee754..691fa8163 100644
--- a/src/modules/m_httpd_stats.cpp
+++ b/src/modules/m_httpd_stats.cpp
@@ -119,7 +119,13 @@ class ModuleHttpStats : public Module
stime = gmtime(&server_uptime);
data << "" << stime->tm_yday << "" << stime->tm_hour << "" << stime->tm_min << "" << stime->tm_sec << "" << ServerInstance->startup_time << "";
- data << "" << Sanitize(ServerInstance->Config->data005) << "";
+ data << "";
+ const std::vector& isupport = ServerInstance->ISupport.GetLines();
+ for (std::vector::const_iterator it = isupport.begin(); it != isupport.end(); it++)
+ {
+ data << Sanitize(*it) << std::endl;
+ }
+ data << "";
std::vector xltypes = ServerInstance->XLines->GetAllTypes();
for (std::vector::iterator it = xltypes.begin(); it != xltypes.end(); ++it)
{
--
cgit v1.3.1-10-gc9f91