Remove two useless methods, chanlog is b0rked at the moment.

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9313 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
w00t 2008-04-04 15:06:24 +00:00
parent 3cb3bb6f9a
commit ce4dc653ce
3 changed files with 10 additions and 10 deletions

View File

@ -397,7 +397,7 @@ enum Implementation
I_OnRawSocketAccept, I_OnRawSocketClose, I_OnRawSocketWrite, I_OnRawSocketRead, I_OnChangeLocalUserGECOS, I_OnUserRegister,
I_OnChannelPreDelete, I_OnChannelDelete, I_OnPostOper, I_OnSyncOtherMetaData, I_OnSetAway, I_OnUserList,
I_OnPostCommand, I_OnPostJoin, I_OnWhoisLine, I_OnBuildExemptList, I_OnRawSocketConnect, I_OnGarbageCollect, I_OnBufferFlushed,
I_OnText, I_OnReadConfig, I_OnDownloadFile, I_OnPassCompare, I_OnRunTestSuite, I_OnNamesListItem, I_OnNumeric, I_OnHookUserIO,
I_OnText, I_OnPassCompare, I_OnRunTestSuite, I_OnNamesListItem, I_OnNumeric, I_OnHookUserIO,
I_END
};
@ -432,10 +432,6 @@ class CoreExport Module : public Extensible
{
}
virtual void OnReadConfig(ServerConfig* config, ConfigReader* coreconf);
virtual int OnDownloadFile(const std::string &filename, std::istream* &filedata);
/** Returns the version number of a Module.
* The method should return a Version object with its version information assigned via
* Version::Version

View File

@ -106,8 +106,6 @@ std::string Event::GetEventID()
Module::Module(InspIRCd* Me) : ServerInstance(Me) { }
Module::~Module() { }
void Module::OnReadConfig(ServerConfig*, ConfigReader*) { }
int Module::OnDownloadFile(const std::string&, std::istream*&) { return 0; }
void Module::OnUserConnect(User*) { }
void Module::OnUserQuit(User*, const std::string&, const std::string&) { }
void Module::OnUserDisconnect(User*) { }

View File

@ -27,7 +27,9 @@ class ChannelLogStream : public LogStream
{
Channel *c = ServerInstance->FindChan(channel);
if (loglevel < this->loglvl) return;
printf("I got called\n");
if (loglevel < this->loglvl)
return;
if (c)
{
@ -72,8 +74,9 @@ class ModuleChanLog : public Module
{
std::string method = Conf->ReadValue("log", "method", index);
if (method != "file")
continue;
//if (method != "file")
// continue;
std::string type = Conf->ReadValue("log", "type", index);
std::string level = Conf->ReadValue("log", "level", index);
@ -102,6 +105,9 @@ class ModuleChanLog : public Module
}
std::string target = Conf->ReadValue("log", "target", index);
printf("looking at tag with method: %s type: %s level: %s target: %s", method.c_str(), type.c_str(), level.c_str(), target.c_str());
ChannelLogStream* c = new ChannelLogStream(ServerInstance, loglevel, target);
ServerInstance->Logs->AddLogTypes(type, c, true);
cls.push_back(c);