diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-09 19:00:09 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-09 19:00:09 +0000 |
commit | b6a5e2bd143cdd2fc610f79c87729d2e211da7ff (patch) | |
tree | ba36be3c5ccbea6153c2f4785fdbb9b0736db1ad /src/stats.cpp | |
parent | c4d6ce8c5e1802e5b834d5845e31c3adf7700585 (diff) |
Add server ports to ServerInstance->ports, enable SSL on them using OnHookIO
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11810 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/stats.cpp')
-rw-r--r-- | src/stats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stats.cpp b/src/stats.cpp index 448d6deee..a512ccc38 100644 --- a/src/stats.cpp +++ b/src/stats.cpp @@ -50,8 +50,8 @@ void InspIRCd::DoStats(char statschar, User* user, string_list &results) if (ip.empty()) ip.assign("*"); - results.push_back(sn+" 249 "+user->nick+" :"+ ip + ":"+ConvToStr(this->ports[i]->GetPort())+" (client, " + - this->ports[i]->GetDescription() + ")"); + results.push_back(sn+" 249 "+user->nick+" :"+ ip + ":"+ConvToStr(ports[i]->bind_port)+ + " (" + ports[i]->type + ", " + ports[i]->hook + ")"); } } break; |