diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-07-01 22:55:39 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-07-01 22:55:39 +0000 |
commit | 50eebfeac8ebe501b021ebf62b0b01464fd79a21 (patch) | |
tree | 85c26ff8bdbacd6e3b43cc68bd78fd22ba892420 /src/commands/cmd_stats.cpp | |
parent | c9fed3cb0d87aabbb440f6a14a72601a7f99e8e9 (diff) |
Move list of open ports out of Config object
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11423 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_stats.cpp')
-rw-r--r-- | src/commands/cmd_stats.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/cmd_stats.cpp b/src/commands/cmd_stats.cpp index 09a6c4394..4af8dcb91 100644 --- a/src/commands/cmd_stats.cpp +++ b/src/commands/cmd_stats.cpp @@ -82,14 +82,14 @@ DllExport void DoStats(InspIRCd* ServerInstance, char statschar, User* user, str /* stats p (show listening ports and registered clients on each) */ case 'p': { - for (size_t i = 0; i < ServerInstance->Config->ports.size(); i++) + for (size_t i = 0; i < ServerInstance->ports.size(); i++) { - std::string ip = ServerInstance->Config->ports[i]->GetIP(); + std::string ip = ServerInstance->ports[i]->GetIP(); if (ip.empty()) ip.assign("*"); - results.push_back(sn+" 249 "+user->nick+" :"+ ip + ":"+ConvToStr(ServerInstance->Config->ports[i]->GetPort())+" (client, " + - ServerInstance->Config->ports[i]->GetDescription() + ")"); + results.push_back(sn+" 249 "+user->nick+" :"+ ip + ":"+ConvToStr(ServerInstance->ports[i]->GetPort())+" (client, " + + ServerInstance->ports[i]->GetDescription() + ")"); } } break; |