diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/configreader.h | 4 | ||||
-rw-r--r-- | include/inspircd.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/configreader.h b/include/configreader.h index d0feaccbb..60adbf868 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -672,10 +672,6 @@ class CoreExport ServerConfig : public Extensible */ ClassVector Classes; - /** A list of the classes for listening ports - */ - std::vector<ListenSocketBase *> ports; - /** The 005 tokens of this server (ISUPPORT) * populated/repopulated upon loading or unloading * modules. diff --git a/include/inspircd.h b/include/inspircd.h index 6b13a5ed8..afe4dcd7c 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -509,6 +509,10 @@ class CoreExport InspIRCd : public classbase */ chan_hash* chanlist; + /** List of the open ports + */ + std::vector<ListenSocketBase *> ports; + /** Set to the current signal recieved */ int s_signal; |