diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-28 13:01:19 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-28 13:01:19 +0000 |
commit | 104cf9cbee8ae0c6994060b565fe410e8f140ed7 (patch) | |
tree | 601834883d8cb4707820164de7fcceb9cf4f51c5 /include/inspircd.h | |
parent | fe3799248f7d4cf50b1ba704615d5952dede8917 (diff) |
Note: connect() cant time out for inspsockets in this commit. They'll sit in memory forever -- if you want something actually working properly wait for the next commit
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5040 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r-- | include/inspircd.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index c4a58e90e..965cf44fc 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -373,10 +373,6 @@ class InspIRCd : public classbase */ ServerConfig* Config; - /** Module sockets list, holds the active set of InspSocket classes - */ - std::vector<InspSocket*> module_sockets; - /** Client list, a hash_map containing all clients, local and remote */ user_hash clientlist; @@ -868,21 +864,6 @@ class InspIRCd : public classbase */ bool IsValidMask(const std::string &mask); - /** Add an InspSocket class to the active set - * @param sock A socket to add to the active set - */ - void AddSocket(InspSocket* sock); - - /** Remove an InspSocket class from the active set at next time around the loop - * @param sock A socket to remove from the active set - */ - void RemoveSocket(InspSocket* sock); - - /** Delete a socket immediately without waiting for the next iteration of the mainloop - * @param sock A socket to delete from the active set - */ - void DelSocket(InspSocket* sock); - /** Rehash the local server */ void RehashServer(); |