diff options
| author | 2009-07-01 22:55:39 +0000 | |
|---|---|---|
| committer | 2009-07-01 22:55:39 +0000 | |
| commit | 50eebfeac8ebe501b021ebf62b0b01464fd79a21 (patch) | |
| tree | 85c26ff8bdbacd6e3b43cc68bd78fd22ba892420 /include | |
| parent | Check for oper max chans before user max chans, fixes code weirdness and bug ... (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 '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; |
