diff options
| author | 2009-10-21 23:46:13 +0000 | |
|---|---|---|
| committer | 2009-10-21 23:46:13 +0000 | |
| commit | d8f98565a8617658f610bc94a5d87266930beee4 (patch) | |
| tree | 365a153c59bc8b521b094c27f25b484a69e5154b /src/stats.cpp | |
| parent | Move AllowedPrivs and similar oper information from LocalUser to OperInfo (diff) | |
| download | inspircd++-d8f98565a8617658f610bc94a5d87266930beee4.tar.gz inspircd++-d8f98565a8617658f610bc94a5d87266930beee4.tar.bz2 inspircd++-d8f98565a8617658f610bc94a5d87266930beee4.zip | |
Use ConfigTagList as a faster access method for access to configuration
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11948 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/stats.cpp')
| -rw-r--r-- | src/stats.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/stats.cpp b/src/stats.cpp index 588953f35..a469600af 100644 --- a/src/stats.cpp +++ b/src/stats.cpp @@ -234,14 +234,15 @@ void InspIRCd::DoStats(char statschar, User* user, string_list &results) /* stats o */ case 'o': - for (int i = 0;; i++) + { + ConfigTagList tags = ServerInstance->Config->ConfTags("oper"); + for(ConfigIter i = tags.first; i != tags.second; ++i) { - ConfigTag* tag = Config->ConfValue("oper", i); - if (!tag) - break; + ConfigTag* tag = i->second; results.push_back(sn+" 243 "+user->nick+" O "+tag->getString("host")+" * "+ tag->getString("name") + " " + tag->getString("type")+" 0"); } + } break; /* stats l (show user I/O stats) */ |
