summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-07-01 22:55:39 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-07-01 22:55:39 +0000
commit50eebfeac8ebe501b021ebf62b0b01464fd79a21 (patch)
tree85c26ff8bdbacd6e3b43cc68bd78fd22ba892420 /include
parentc9fed3cb0d87aabbb440f6a14a72601a7f99e8e9 (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.h4
-rw-r--r--include/inspircd.h4
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;