mirror of
https://github.com/inspircd/inspircd.git
synced 2025-04-03 06:40:04 -04:00
(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
16 lines
344 B
C
16 lines
344 B
C
#ifndef __USERPROCESS_H__
|
|
#define __USERPROCESS_H__
|
|
|
|
#include "users.h"
|
|
#include "inspircd.h"
|
|
|
|
void CheckDie();
|
|
void LoadAllModules(InspIRCd* ServerInstance);
|
|
void CheckRoot();
|
|
void OpenLog(char** argv, int argc);
|
|
void DoBackgroundUserStuff(time_t TIME);
|
|
void ProcessUser(userrec* cu);
|
|
void DoSocketTimeouts(time_t TIME, InspIRCd* SI);
|
|
|
|
#endif
|