1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 07:36:38 +02:00

Added ss_main.c, a small sample showing how to create a pseudo-client from a module, will soon become StatServ though.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1817 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
cyberbotx
2008-11-29 04:11:25 +00:00
parent f300ac836e
commit ccb8c76295
+45
View File
@@ -0,0 +1,45 @@
/* StatServ core functions
*
* (C) 2003-2008 Anope Team
* Contact us at info@anope.org
*
* Please read COPYING and README for further details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
* $Id$
*
*/
#include "module.h"
class StatServ : public Service
{
public:
StatServ() : Service("StatServ", ServiceUser, ServiceHost, "Stats Service")
{
}
} *statserv = NULL;
int statserv_create(int argc, char **argv);
class SSMain : public Module
{
public:
SSMain(const std::string &modname, const std::string &creator) : Module(modname, creator)
{
EvtHook *hook;
hook = createEventHook(EVENT_SERVER_CONNECT, statserv_create);
this->AddEventHook(hook);
}
};
int statserv_create(int argc, char **argv)
{
statserv = new StatServ();
return MOD_CONT;
}
MODULE_INIT("ss_main", SSMain)