2005-12-12 23:45:52 +00:00
|
|
|
#ifndef __USERPROCESS_H__
|
|
|
|
#define __USERPROCESS_H__
|
|
|
|
|
|
|
|
#include "users.h"
|
2005-12-16 12:54:19 +00:00
|
|
|
#include "inspircd.h"
|
2005-12-12 23:45:52 +00:00
|
|
|
|
|
|
|
void CheckDie();
|
2005-12-16 12:54:19 +00:00
|
|
|
void LoadAllModules(InspIRCd* ServerInstance);
|
2005-12-12 23:45:52 +00:00
|
|
|
void CheckRoot();
|
|
|
|
void OpenLog(char** argv, int argc);
|
2006-02-02 18:00:13 +00:00
|
|
|
void DoBackgroundUserStuff(time_t TIME);
|
2005-12-12 23:45:52 +00:00
|
|
|
void ProcessUser(userrec* cu);
|
2006-02-08 17:22:12 +00:00
|
|
|
void DoSocketTimeouts(time_t TIME);
|
2005-12-12 23:45:52 +00:00
|
|
|
|
|
|
|
#endif
|