summaryrefslogtreecommitdiff
path: root/include/userprocess.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-09 14:53:19 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-09 14:53:19 +0000
commitab46b96db4d457e6a4f2e978c38b79762cdeb9d5 (patch)
tree01b9489ae9804ee45b765ad7045efee54b34347b /include/userprocess.h
parentf0680338833dd76966ba1769980abb9eafb50467 (diff)
Move socket_ref and module_sockets vectors/arrays into InspIRCd*. These are public members, which InspSocket can modify.
(eventually, this will be marshalled safely through some accessors). When constructing an InspSocket you must now provide an InspIRCd* instance to 'attach' the socket to. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4812 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/userprocess.h')
-rw-r--r--include/userprocess.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/userprocess.h b/include/userprocess.h
index cc3d713a0..1a93e68cd 100644
--- a/include/userprocess.h
+++ b/include/userprocess.h
@@ -10,6 +10,6 @@ void CheckRoot();
void OpenLog(char** argv, int argc);
void DoBackgroundUserStuff(time_t TIME);
void ProcessUser(userrec* cu);
-void DoSocketTimeouts(time_t TIME);
+void DoSocketTimeouts(time_t TIME, InspIRCd* SI);
#endif