From: brain Date: Wed, 13 Apr 2005 13:42:08 +0000 (+0000) Subject: Updated to support OnSendList X-Git-Tag: v2.0.23~10575 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=654ff4ae2f06704de2beb1050021c8196f693cb5;p=user%2Fhenk%2Fcode%2Finspircd.git Updated to support OnSendList git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1073 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/docs/man/man3/ConfigReader.3 b/docs/man/man3/ConfigReader.3 index 7891a2773..d5978696b 100644 --- a/docs/man/man3/ConfigReader.3 +++ b/docs/man/man3/ConfigReader.3 @@ -84,239 +84,239 @@ Allows reading of values from configuration files This class allows a module to It may either be instantiated with one parameter or none. Constructing the class using one parameter allows you to specify a path to your own configuration file, otherwise, inspircd.conf is read. .PP -Definition at line 780 of file modules.h. +Definition at line 790 of file modules.h. .SH "Constructor & Destructor Documentation" .PP .SS "ConfigReader::ConfigReader ()" .PP -Default constructor. This constructor initialises the ConfigReader class to read the inspircd.conf file as specified when running ./configure.Definition at line 674 of file modules.cpp. +Default constructor. This constructor initialises the ConfigReader class to read the inspircd.conf file as specified when running ./configure.Definition at line 675 of file modules.cpp. .PP References cache, CONF_FILE_NOT_FOUND, error, errorlog, and readerror. .PP .nf -675 { -676 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -677 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -678 this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog); -679 if (!this->readerror) -680 this->error = CONF_FILE_NOT_FOUND; -681 } +676 { +677 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +678 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +679 this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog); +680 if (!this->readerror) +681 this->error = CONF_FILE_NOT_FOUND; +682 } .fi .SS "ConfigReader::ConfigReader (std::string filename)" .PP -Overloaded constructor. This constructor initialises the ConfigReader class to read a user-specified config fileDefinition at line 693 of file modules.cpp. +Overloaded constructor. This constructor initialises the ConfigReader class to read a user-specified config fileDefinition at line 694 of file modules.cpp. .PP References cache, CONF_FILE_NOT_FOUND, error, errorlog, and readerror. .PP .nf -694 { -695 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -696 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -697 this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog); -698 if (!this->readerror) -699 this->error = CONF_FILE_NOT_FOUND; -700 }; +695 { +696 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +697 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +698 this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog); +699 if (!this->readerror) +700 this->error = CONF_FILE_NOT_FOUND; +701 }; .fi .SS "ConfigReader::~\fBConfigReader\fP ()" .PP -Default destructor. This method destroys the ConfigReader class.Definition at line 684 of file modules.cpp. +Default destructor. This method destroys the ConfigReader class.Definition at line 685 of file modules.cpp. .PP References cache, and errorlog. .PP .nf -685 { -686 if (this->cache) -687 delete this->cache; -688 if (this->errorlog) -689 delete this->errorlog; -690 } +686 { +687 if (this->cache) +688 delete this->cache; +689 if (this->errorlog) +690 delete this->errorlog; +691 } .fi .SH "Member Function Documentation" .PP .SS "void ConfigReader::DumpErrors (bool bail, \fBuserrec\fP * user)" .PP -Dumps the list of errors in a config file to an output location. If bail is true, then the program will abort. If bail is false and user points to a valid user record, the error report will be spooled to the given user by means of NOTICE. if bool is false AND user is false, the error report will be spooled to all opers by means of a NOTICE to all opers.Definition at line 771 of file modules.cpp. +Dumps the list of errors in a config file to an output location. If bail is true, then the program will abort. If bail is false and user points to a valid user record, the error report will be spooled to the given user by means of NOTICE. if bool is false AND user is false, the error report will be spooled to all opers by means of a NOTICE to all opers.Definition at line 772 of file modules.cpp. .PP References errorlog, connection::fd, and userrec::nick. .PP .nf -772 { -773 if (bail) -774 { -775 printf('There were errors in your configuration:\n%s',errorlog->str().c_str()); -776 exit(0); -777 } -778 else -779 { -780 char dataline[1024]; -781 if (user) -782 { -783 WriteServ(user->fd,'NOTICE %s :There were errors in the configuration file:',user->nick); -784 while (!errorlog->eof()) -785 { -786 errorlog->getline(dataline,1024); -787 WriteServ(user->fd,'NOTICE %s :%s',user->nick,dataline); -788 } -789 } -790 else -791 { -792 WriteOpers('There were errors in the configuration file:',user->nick); -793 while (!errorlog->eof()) -794 { -795 errorlog->getline(dataline,1024); -796 WriteOpers(dataline); -797 } -798 } -799 return; -800 } -801 } +773 { +774 if (bail) +775 { +776 printf('There were errors in your configuration:\n%s',errorlog->str().c_str()); +777 exit(0); +778 } +779 else +780 { +781 char dataline[1024]; +782 if (user) +783 { +784 WriteServ(user->fd,'NOTICE %s :There were errors in the configuration file:',user->nick); +785 while (!errorlog->eof()) +786 { +787 errorlog->getline(dataline,1024); +788 WriteServ(user->fd,'NOTICE %s :%s',user->nick,dataline); +789 } +790 } +791 else +792 { +793 WriteOpers('There were errors in the configuration file:',user->nick); +794 while (!errorlog->eof()) +795 { +796 errorlog->getline(dataline,1024); +797 WriteOpers(dataline); +798 } +799 } +800 return; +801 } +802 } .fi .SS "int ConfigReader::Enumerate (std::string tag)" .PP -Counts the number of times a given tag appears in the config file. This method counts the number of times a tag appears in a config file, for use where there are several tags of the same kind, e.g. with opers and connect types. It can be used with the index value of \fBConfigReader::ReadValue\fP to loop through all copies of a multiple instance tag.Definition at line 804 of file modules.cpp. +Counts the number of times a given tag appears in the config file. This method counts the number of times a tag appears in a config file, for use where there are several tags of the same kind, e.g. with opers and connect types. It can be used with the index value of \fBConfigReader::ReadValue\fP to loop through all copies of a multiple instance tag.Definition at line 805 of file modules.cpp. .PP References cache. .PP .nf -805 { -806 return EnumConf(cache,tag.c_str()); -807 } +806 { +807 return EnumConf(cache,tag.c_str()); +808 } .fi .SS "int ConfigReader::EnumerateValues (std::string tag, int index)" .PP -Returns the number of items within a tag. For example if the tag was then this function would return 2. Spaces and newlines both qualify as valid seperators between values.Definition at line 809 of file modules.cpp. +Returns the number of items within a tag. For example if the tag was then this function would return 2. Spaces and newlines both qualify as valid seperators between values.Definition at line 810 of file modules.cpp. .PP References cache. .PP .nf -810 { -811 return EnumValues(cache, tag.c_str(), index); -812 } +811 { +812 return EnumValues(cache, tag.c_str(), index); +813 } .fi .SS "long ConfigReader::GetError ()" .PP -Returns the last error to occur. Valid errors can be found by looking in \fBmodules.h\fP. Any nonzero value indicates an error condition. A call to \fBGetError()\fP resets the error flag back to 0.Definition at line 764 of file modules.cpp. +Returns the last error to occur. Valid errors can be found by looking in \fBmodules.h\fP. Any nonzero value indicates an error condition. A call to \fBGetError()\fP resets the error flag back to 0.Definition at line 765 of file modules.cpp. .PP References error. .PP .nf -765 { -766 long olderr = this->error; -767 this->error = 0; -768 return olderr; -769 } +766 { +767 long olderr = this->error; +768 this->error = 0; +769 return olderr; +770 } .fi .SS "bool ConfigReader::ReadFlag (std::string tag, std::string name, int index)" .PP -Retrieves a boolean value from the config file. This method retrieves a boolean value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve. The values '1', 'yes' and 'true' in the config file count as true to ReadFlag, and any other value counts as false.Definition at line 718 of file modules.cpp. +Retrieves a boolean value from the config file. This method retrieves a boolean value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve. The values '1', 'yes' and 'true' in the config file count as true to ReadFlag, and any other value counts as false.Definition at line 719 of file modules.cpp. .PP References cache, CONF_VALUE_NOT_FOUND, and error. .PP .nf -719 { -720 char val[MAXBUF]; -721 char t[MAXBUF]; -722 char n[MAXBUF]; -723 strlcpy(t,tag.c_str(),MAXBUF); -724 strlcpy(n,name.c_str(),MAXBUF); -725 int res = ReadConf(cache,t,n,index,val); -726 if (!res) -727 { -728 this->error = CONF_VALUE_NOT_FOUND; -729 return false; -730 } -731 std::string s = val; -732 return ((s == 'yes') || (s == 'YES') || (s == 'true') || (s == 'TRUE') || (s == '1')); -733 } +720 { +721 char val[MAXBUF]; +722 char t[MAXBUF]; +723 char n[MAXBUF]; +724 strlcpy(t,tag.c_str(),MAXBUF); +725 strlcpy(n,name.c_str(),MAXBUF); +726 int res = ReadConf(cache,t,n,index,val); +727 if (!res) +728 { +729 this->error = CONF_VALUE_NOT_FOUND; +730 return false; +731 } +732 std::string s = val; +733 return ((s == 'yes') || (s == 'YES') || (s == 'true') || (s == 'TRUE') || (s == '1')); +734 } .fi .SS "long ConfigReader::ReadInteger (std::string tag, std::string name, int index, bool needs_unsigned)" .PP -Retrieves an integer value from the config file. This method retrieves an integer value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve. Any invalid integer values in the tag will cause the objects error value to be set, and any call to \fBGetError()\fP will return CONF_INVALID_NUMBER to be returned. needs_unsigned is set if the number must be unsigned. If a signed number is placed into a tag which is specified unsigned, 0 will be returned and \fBGetError()\fP will return CONF_NOT_UNSIGNEDDefinition at line 735 of file modules.cpp. +Retrieves an integer value from the config file. This method retrieves an integer value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve. Any invalid integer values in the tag will cause the objects error value to be set, and any call to \fBGetError()\fP will return CONF_INVALID_NUMBER to be returned. needs_unsigned is set if the number must be unsigned. If a signed number is placed into a tag which is specified unsigned, 0 will be returned and \fBGetError()\fP will return CONF_NOT_UNSIGNEDDefinition at line 736 of file modules.cpp. .PP References cache, CONF_NOT_A_NUMBER, CONF_NOT_UNSIGNED, CONF_VALUE_NOT_FOUND, and error. .PP .nf -736 { -737 char val[MAXBUF]; -738 char t[MAXBUF]; -739 char n[MAXBUF]; -740 strlcpy(t,tag.c_str(),MAXBUF); -741 strlcpy(n,name.c_str(),MAXBUF); -742 int res = ReadConf(cache,t,n,index,val); -743 if (!res) -744 { -745 this->error = CONF_VALUE_NOT_FOUND; -746 return 0; -747 } -748 for (int i = 0; i < strlen(val); i++) -749 { -750 if (!isdigit(val[i])) -751 { -752 this->error = CONF_NOT_A_NUMBER; -753 return 0; -754 } -755 } -756 if ((needs_unsigned) && (atoi(val)<0)) -757 { -758 this->error = CONF_NOT_UNSIGNED; -759 return 0; -760 } -761 return atoi(val); -762 } +737 { +738 char val[MAXBUF]; +739 char t[MAXBUF]; +740 char n[MAXBUF]; +741 strlcpy(t,tag.c_str(),MAXBUF); +742 strlcpy(n,name.c_str(),MAXBUF); +743 int res = ReadConf(cache,t,n,index,val); +744 if (!res) +745 { +746 this->error = CONF_VALUE_NOT_FOUND; +747 return 0; +748 } +749 for (int i = 0; i < strlen(val); i++) +750 { +751 if (!isdigit(val[i])) +752 { +753 this->error = CONF_NOT_A_NUMBER; +754 return 0; +755 } +756 } +757 if ((needs_unsigned) && (atoi(val)<0)) +758 { +759 this->error = CONF_NOT_UNSIGNED; +760 return 0; +761 } +762 return atoi(val); +763 } .fi .SS "std::string ConfigReader::ReadValue (std::string tag, std::string name, int index)" .PP -Retrieves a value from the config file. This method retrieves a value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve.Definition at line 702 of file modules.cpp. +Retrieves a value from the config file. This method retrieves a value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve.Definition at line 703 of file modules.cpp. .PP References cache, CONF_VALUE_NOT_FOUND, and error. .PP .nf -703 { -704 char val[MAXBUF]; -705 char t[MAXBUF]; -706 char n[MAXBUF]; -707 strlcpy(t,tag.c_str(),MAXBUF); -708 strlcpy(n,name.c_str(),MAXBUF); -709 int res = ReadConf(cache,t,n,index,val); -710 if (!res) -711 { -712 this->error = CONF_VALUE_NOT_FOUND; -713 return ''; -714 } -715 return std::string(val); -716 } +704 { +705 char val[MAXBUF]; +706 char t[MAXBUF]; +707 char n[MAXBUF]; +708 strlcpy(t,tag.c_str(),MAXBUF); +709 strlcpy(n,name.c_str(),MAXBUF); +710 int res = ReadConf(cache,t,n,index,val); +711 if (!res) +712 { +713 this->error = CONF_VALUE_NOT_FOUND; +714 return ''; +715 } +716 return std::string(val); +717 } .fi .SS "bool ConfigReader::Verify ()" .PP -Returns true if a config file is valid. This method is partially implemented and will only return false if the config file does not exist or could not be opened.Definition at line 814 of file modules.cpp. +Returns true if a config file is valid. This method is partially implemented and will only return false if the config file does not exist or could not be opened.Definition at line 815 of file modules.cpp. .PP References readerror. .PP .nf -815 { -816 return this->readerror; -817 } +816 { +817 return this->readerror; +818 } .fi .SH "Member Data Documentation" .PP .SS "std::stringstream* \fBConfigReader::cache\fP\fC [protected]\fP" .PP -The contents of the configuration file This protected member should never be accessed by a module (and cannot be accessed unless the core is changed). It will contain a pointer to the configuration file data with unneeded data (such as comments) stripped from it.Definition at line 788 of file modules.h. +The contents of the configuration file This protected member should never be accessed by a module (and cannot be accessed unless the core is changed). It will contain a pointer to the configuration file data with unneeded data (such as comments) stripped from it.Definition at line 798 of file modules.h. .PP Referenced by ConfigReader(), Enumerate(), EnumerateValues(), ReadFlag(), ReadInteger(), ReadValue(), and ~ConfigReader(). .SS "long \fBConfigReader::error\fP\fC [protected]\fP" .PP -Definition at line 793 of file modules.h. +Definition at line 803 of file modules.h. .PP Referenced by ConfigReader(), GetError(), ReadFlag(), ReadInteger(), and ReadValue(). .SS "std::stringstream* \fBConfigReader::errorlog\fP\fC [protected]\fP" .PP -Definition at line 789 of file modules.h. +Definition at line 799 of file modules.h. .PP Referenced by ConfigReader(), DumpErrors(), and ~ConfigReader(). .SS "bool \fBConfigReader::readerror\fP\fC [protected]\fP" .PP -Used to store errors. Definition at line 792 of file modules.h. +Used to store errors. Definition at line 802 of file modules.h. .PP Referenced by ConfigReader(), and Verify(). diff --git a/docs/man/man3/FileReader.3 b/docs/man/man3/FileReader.3 index bcc5f2c28..1fd538c20 100644 --- a/docs/man/man3/FileReader.3 +++ b/docs/man/man3/FileReader.3 @@ -57,100 +57,100 @@ Caches a text file into memory and can be used to retrieve lines from it. This class contains methods for read-only manipulation of a text file in memory. Either use the constructor type with one parameter to load a file into memory at construction, or use the LoadFile method to load a file. .PP -Definition at line 869 of file modules.h. +Definition at line 879 of file modules.h. .SH "Constructor & Destructor Documentation" .PP .SS "FileReader::FileReader ()" .PP -Default constructor. This method does not load any file into memory, you must use the LoadFile method after constructing the class this way.Definition at line 827 of file modules.cpp. +Default constructor. This method does not load any file into memory, you must use the LoadFile method after constructing the class this way.Definition at line 828 of file modules.cpp. .PP .nf -828 { -829 } +829 { +830 } .fi .SS "FileReader::FileReader (std::string filename)" .PP -Secondary constructor. This method initialises the class with a file loaded into it ready for GetLine and and other methods to be called. If the file could not be loaded, \fBFileReader::FileSize\fP returns 0.Definition at line 820 of file modules.cpp. +Secondary constructor. This method initialises the class with a file loaded into it ready for GetLine and and other methods to be called. If the file could not be loaded, \fBFileReader::FileSize\fP returns 0.Definition at line 821 of file modules.cpp. .PP References fc, and file_cache. .PP .nf -821 { -822 file_cache c; -823 readfile(c,filename.c_str()); -824 this->fc = c; -825 } +822 { +823 file_cache c; +824 readfile(c,filename.c_str()); +825 this->fc = c; +826 } .fi .SS "FileReader::~\fBFileReader\fP ()" .PP -Default destructor. This deletes the memory allocated to the file.Definition at line 839 of file modules.cpp. +Default destructor. This deletes the memory allocated to the file.Definition at line 840 of file modules.cpp. .PP .nf -840 { -841 } +841 { +842 } .fi .SH "Member Function Documentation" .PP .SS "bool FileReader::Exists ()" .PP -Returns true if the file exists This function will return false if the file could not be opened. Definition at line 843 of file modules.cpp. +Returns true if the file exists This function will return false if the file could not be opened. Definition at line 844 of file modules.cpp. .PP References fc. .PP .nf -844 { -845 if (fc.size() == 0) -846 { -847 return(false); -848 } -849 else -850 { -851 return(true); -852 } -853 } +845 { +846 if (fc.size() == 0) +847 { +848 return(false); +849 } +850 else +851 { +852 return(true); +853 } +854 } .fi .SS "int FileReader::FileSize ()" .PP -Returns the size of the file in lines. This method returns the number of lines in the read file. If it is 0, no lines have been read into memory, either because the file is empty or it does not exist, or cannot be opened due to permission problems.Definition at line 862 of file modules.cpp. +Returns the size of the file in lines. This method returns the number of lines in the read file. If it is 0, no lines have been read into memory, either because the file is empty or it does not exist, or cannot be opened due to permission problems.Definition at line 863 of file modules.cpp. .PP References fc. .PP .nf -863 { -864 return fc.size(); -865 } +864 { +865 return fc.size(); +866 } .fi .SS "std::string FileReader::GetLine (int x)" .PP -Retrieve one line from the file. This method retrieves one line from the text file. If an empty non-NULL string is returned, the index was out of bounds, or the line had no data on it.Definition at line 855 of file modules.cpp. +Retrieve one line from the file. This method retrieves one line from the text file. If an empty non-NULL string is returned, the index was out of bounds, or the line had no data on it.Definition at line 856 of file modules.cpp. .PP References fc. .PP .nf -856 { -857 if ((x<0) || (x>fc.size())) -858 return ''; -859 return fc[x]; -860 } +857 { +858 if ((x<0) || (x>fc.size())) +859 return ''; +860 return fc[x]; +861 } .fi .SS "void FileReader::LoadFile (std::string filename)" .PP -Used to load a file. This method loads a file into the class ready for GetLine and and other methods to be called. If the file could not be loaded, \fBFileReader::FileSize\fP returns 0.Definition at line 831 of file modules.cpp. +Used to load a file. This method loads a file into the class ready for GetLine and and other methods to be called. If the file could not be loaded, \fBFileReader::FileSize\fP returns 0.Definition at line 832 of file modules.cpp. .PP References fc, and file_cache. .PP .nf -832 { -833 file_cache c; -834 readfile(c,filename.c_str()); -835 this->fc = c; -836 } +833 { +834 file_cache c; +835 readfile(c,filename.c_str()); +836 this->fc = c; +837 } .fi .SH "Member Data Documentation" .PP .SS "\fBfile_cache\fP \fBFileReader::fc\fP\fC [private]\fP" .PP -Definition at line 871 of file modules.h. +Definition at line 881 of file modules.h. .PP Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile(). diff --git a/docs/man/man3/Module.3 b/docs/man/man3/Module.3 index 326d33cec..08fddea6c 100644 --- a/docs/man/man3/Module.3 +++ b/docs/man/man3/Module.3 @@ -127,6 +127,10 @@ Inherits \fBclassbase\fP. .RI "virtual void \fBOnBackgroundTimer\fP (time_t curtime)" .br .RI "\fICalled once every five seconds for background processing. \fP" +.ti -1c +.RI "virtual void \fBOnSendList\fP (\fBuserrec\fP *user, \fBchanrec\fP *channel, char mode)" +.br +.RI "\fICalled whenever a list is needed for a listmode. \fP" .in -1c .SH "Detailed Description" .PP @@ -276,6 +280,13 @@ Called on rehash. This method is called prior to a /REHASH or when a SIGHUP is r .nf 314 { } .fi +.SS "void Module::OnSendList (\fBuserrec\fP * user, \fBchanrec\fP * channel, char mode)\fC [virtual]\fP" +.PP +Called whenever a list is needed for a listmode. For example, when a /MODE #channel +b (without any other parameters) is called, if a module was handling +b this function would be called. The function can then output any lists it wishes to. Please note that all modules will see all mode characters to provide the ability to extend each other, so please only output a list if the mode character given matches the one(s) you want to handle.Definition at line 334 of file modules.cpp. +.PP +.nf +334 { }; +.fi .SS "void Module::OnServerRaw (std::string & raw, bool inbound, \fBuserrec\fP * user)\fC [virtual]\fP" .PP Called when a raw command is transmitted or received. This method is the lowest level of handler available to a module. It will be called with raw data which is passing through a connected socket. If you wish, you may munge this data by changing the string parameter 'raw'. If you do this, after your function exits it will immediately be cut down to 510 characters plus a carriage return and linefeed. For INBOUND messages only (where inbound is set to true) the value of user will be the userrec of the connection sending the data. This is not possible for outbound data because the data may be being routed to multiple targets.Definition at line 315 of file modules.cpp. diff --git a/docs/man/man3/ModuleFactory.3 b/docs/man/man3/ModuleFactory.3 index 4b153bd9c..73896abb6 100644 --- a/docs/man/man3/ModuleFactory.3 +++ b/docs/man/man3/ModuleFactory.3 @@ -32,22 +32,22 @@ Instantiates classes inherited from \fBModule\fP This class creates a class inhe This is to allow for modules to create many different variants of \fBModule\fP, dependent on architecture, configuration, etc. In most cases, the simple class shown in the example module m_foobar.so will suffice for most modules. .PP -Definition at line 924 of file modules.h. +Definition at line 934 of file modules.h. .SH "Constructor & Destructor Documentation" .PP .SS "ModuleFactory::ModuleFactory ()\fC [inline]\fP" .PP -Definition at line 927 of file modules.h. +Definition at line 937 of file modules.h. .PP .nf -927 { } +937 { } .fi .SS "virtual ModuleFactory::~\fBModuleFactory\fP ()\fC [inline, virtual]\fP" .PP -Definition at line 928 of file modules.h. +Definition at line 938 of file modules.h. .PP .nf -928 { } +938 { } .fi .SH "Member Function Documentation" .PP diff --git a/docs/man/man3/Server.3 b/docs/man/man3/Server.3 index 8da159dc2..06832af62 100644 --- a/docs/man/man3/Server.3 +++ b/docs/man/man3/Server.3 @@ -218,24 +218,24 @@ Allows server output and query functions This class contains methods which allow All modules should instantiate at least one copy of this class, and use its member functions to perform their tasks. .PP -Definition at line 385 of file modules.h. +Definition at line 395 of file modules.h. .SH "Constructor & Destructor Documentation" .PP .SS "Server::Server ()" .PP -Default constructor. Creates a Server object.Definition at line 339 of file modules.cpp. +Default constructor. Creates a Server object.Definition at line 340 of file modules.cpp. .PP .nf -340 { -341 } +341 { +342 } .fi .SS "Server::~\fBServer\fP ()\fC [virtual]\fP" .PP -Default destructor. Destroys a Server object.Definition at line 343 of file modules.cpp. +Default destructor. Destroys a Server object.Definition at line 344 of file modules.cpp. .PP .nf -344 { -345 } +345 { +346 } .fi .SH "Member Function Documentation" .PP @@ -245,25 +245,25 @@ Adds a command to the command table. This allows modules to add extra commands i .PP typedef void (handlerfunc) (char**, int, userrec*); ... void \fBhandle_kill(char **parameters, int pcnt, userrec *user)\fP .PP -When the command is typed, the parameters will be placed into the parameters array (similar to argv) and the parameter count will be placed into pcnt (similar to argv). There will never be any less parameters than the 'minparams' value you specified when creating the command. The *user parameter is the class of the user which caused the command to trigger, who will always have the flag you specified in 'flags' when creating the initial command. For example to create an oper only command create the commands with flags='o'. The source parameter is used for resource tracking, and should contain the name of your module (with file extension) e.g. 'm_blarp.so'. If you place the wrong identifier here, you can cause crashes if your module is unloaded.Definition at line 420 of file modules.cpp. +When the command is typed, the parameters will be placed into the parameters array (similar to argv) and the parameter count will be placed into pcnt (similar to argv). There will never be any less parameters than the 'minparams' value you specified when creating the command. The *user parameter is the class of the user which caused the command to trigger, who will always have the flag you specified in 'flags' when creating the initial command. For example to create an oper only command create the commands with flags='o'. The source parameter is used for resource tracking, and should contain the name of your module (with file extension) e.g. 'm_blarp.so'. If you place the wrong identifier here, you can cause crashes if your module is unloaded.Definition at line 421 of file modules.cpp. .PP References createcommand(). .PP .nf -421 { -422 createcommand(cmd,f,flags,minparams,source); -423 } +422 { +423 createcommand(cmd,f,flags,minparams,source); +424 } .fi .SS "void Server::AddELine (long duration, std::string source, std::string reason, std::string hostmask)\fC [virtual]\fP" .PP -Adds a E-line The E-line is enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 638 of file modules.cpp. +Adds a E-line The E-line is enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 639 of file modules.cpp. .PP References add_eline(), and duration(). .PP .nf -639 { -640 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -641 } +640 { +641 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +642 } .fi .SS "bool Server::AddExtendedListMode (char modechar)\fC [virtual]\fP" .PP @@ -277,405 +277,405 @@ Adds an extended mode letter which is parsed by a module and handled in a list f .PP (4) The mode and its parameter are NOT stored in the channels modes structure .PP -It is down to the module handling the mode to maintain state and determine what 'items' (e.g. users, or a banlist) have the mode set on them, and process the modes at the correct times, e.g. during access checks on channels, etc. When the extended mode is triggered the OnExtendedMode method will be triggered as above. Note that the target you are given will be a channel, if for example your mode is set 'on a user' (in for example +a) you must use Server::Find to locate the user the mode is operating on. Your mode handler may return 1 to handle the mode AND tell the core to display the mode change, e.g. '+aaa one two three' in the case of the mode for 'two', or it may return -1 to 'eat' the mode change, so the above example would become '+aa one three' after processing.Definition at line 565 of file modules.cpp. +It is down to the module handling the mode to maintain state and determine what 'items' (e.g. users, or a banlist) have the mode set on them, and process the modes at the correct times, e.g. during access checks on channels, etc. When the extended mode is triggered the OnExtendedMode method will be triggered as above. Note that the target you are given will be a channel, if for example your mode is set 'on a user' (in for example +a) you must use Server::Find to locate the user the mode is operating on. Your mode handler may return 1 to handle the mode AND tell the core to display the mode change, e.g. '+aaa one two three' in the case of the mode for 'two', or it may return -1 to 'eat' the mode change, so the above example would become '+aa one three' after processing.Definition at line 566 of file modules.cpp. .PP References DoAddExtendedMode(), ModeMakeList(), and MT_CHANNEL. .PP .nf -566 { -567 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); -568 if (res) -569 ModeMakeList(modechar); -570 return res; -571 } +567 { +568 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); +569 if (res) +570 ModeMakeList(modechar); +571 return res; +572 } .fi .SS "bool Server::AddExtendedMode (char modechar, int type, bool requires_oper, int params_when_on, int params_when_off)\fC [virtual]\fP" .PP -Adds an extended mode letter which is parsed by a module. This allows modules to add extra mode letters, e.g. +x for hostcloak. the 'type' parameter is either MT_CHANNEL, MT_CLIENT, or MT_SERVER, to indicate wether the mode is a channel mode, a client mode, or a server mode. requires_oper is used with MT_CLIENT type modes only to indicate the mode can only be set or unset by an oper. If this is used for MT_CHANNEL type modes it is ignored. params_when_on is the number of modes to expect when the mode is turned on (for type MT_CHANNEL only), e.g. with mode +k, this would have a value of 1. the params_when_off value has a similar value to params_when_on, except it indicates the number of parameters to expect when the mode is disabled. Modes which act in a similar way to channel mode +l (e.g. require a parameter to enable, but not to disable) should use this parameter. The function returns false if the mode is unavailable, and will not attempt to allocate another character, as this will confuse users. This also means that as only one module can claim a specific mode character, the core does not need to keep track of which modules own which modes, which speeds up operation of the server. In this version, a mode can have at most one parameter, attempting to use more parameters will have undefined effects.Definition at line 545 of file modules.cpp. +Adds an extended mode letter which is parsed by a module. This allows modules to add extra mode letters, e.g. +x for hostcloak. the 'type' parameter is either MT_CHANNEL, MT_CLIENT, or MT_SERVER, to indicate wether the mode is a channel mode, a client mode, or a server mode. requires_oper is used with MT_CLIENT type modes only to indicate the mode can only be set or unset by an oper. If this is used for MT_CHANNEL type modes it is ignored. params_when_on is the number of modes to expect when the mode is turned on (for type MT_CHANNEL only), e.g. with mode +k, this would have a value of 1. the params_when_off value has a similar value to params_when_on, except it indicates the number of parameters to expect when the mode is disabled. Modes which act in a similar way to channel mode +l (e.g. require a parameter to enable, but not to disable) should use this parameter. The function returns false if the mode is unavailable, and will not attempt to allocate another character, as this will confuse users. This also means that as only one module can claim a specific mode character, the core does not need to keep track of which modules own which modes, which speeds up operation of the server. In this version, a mode can have at most one parameter, attempting to use more parameters will have undefined effects.Definition at line 546 of file modules.cpp. .PP References DEBUG, DoAddExtendedMode(), MT_CLIENT, and MT_SERVER. .PP .nf -546 { -547 if (type == MT_SERVER) -548 { -549 log(DEBUG,'*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion'); -550 return false; -551 } -552 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) -553 { -554 log(DEBUG,'*** API ERROR *** Parameters on MT_CLIENT modes are not supported'); -555 return false; -556 } -557 if ((params_when_on>1) || (params_when_off>1)) -558 { -559 log(DEBUG,'*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported'); -560 return false; -561 } -562 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); -563 } +547 { +548 if (type == MT_SERVER) +549 { +550 log(DEBUG,'*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion'); +551 return false; +552 } +553 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) +554 { +555 log(DEBUG,'*** API ERROR *** Parameters on MT_CLIENT modes are not supported'); +556 return false; +557 } +558 if ((params_when_on>1) || (params_when_off>1)) +559 { +560 log(DEBUG,'*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported'); +561 return false; +562 } +563 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); +564 } .fi .SS "void Server::AddGLine (long duration, std::string source, std::string reason, std::string hostmask)\fC [virtual]\fP" .PP -Adds a G-line The G-line is propogated to all of the servers in the mesh and enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name.Definition at line 618 of file modules.cpp. +Adds a G-line The G-line is propogated to all of the servers in the mesh and enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name.Definition at line 619 of file modules.cpp. .PP References add_gline(), and duration(). .PP .nf -619 { -620 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -621 } +620 { +621 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +622 } .fi .SS "void Server::AddKLine (long duration, std::string source, std::string reason, std::string hostmask)\fC [virtual]\fP" .PP -Adds a K-line The K-line is enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 633 of file modules.cpp. +Adds a K-line The K-line is enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 634 of file modules.cpp. .PP References add_kline(), and duration(). .PP .nf -634 { -635 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -636 } +635 { +636 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +637 } .fi .SS "void Server::AddQLine (long duration, std::string source, std::string reason, std::string nickname)\fC [virtual]\fP" .PP -Adds a Q-line The Q-line is propogated to all of the servers in the mesh and enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 623 of file modules.cpp. +Adds a Q-line The Q-line is propogated to all of the servers in the mesh and enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 624 of file modules.cpp. .PP References add_qline(), and duration(). .PP .nf -624 { -625 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); -626 } +625 { +626 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); +627 } .fi .SS "void Server::AddZLine (long duration, std::string source, std::string reason, std::string ipaddr)\fC [virtual]\fP" .PP -Adds a Z-line The Z-line is propogated to all of the servers in the mesh and enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 628 of file modules.cpp. +Adds a Z-line The Z-line is propogated to all of the servers in the mesh and enforced as soon as it is added. The duration must be in seconds, however you can use the \fBServer::CalcDuration\fP method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name. Definition at line 629 of file modules.cpp. .PP References add_zline(), and duration(). .PP .nf -629 { -630 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); -631 } +630 { +631 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); +632 } .fi .SS "long Server::CalcDuration (std::string duration)\fC [virtual]\fP" .PP -Calculates a duration This method will take a string containing a formatted duration (e.g. '1w2d') and return its value as a total number of seconds. This is the same function used internally by /GLINE etc to set the ban times.Definition at line 668 of file modules.cpp. +Calculates a duration This method will take a string containing a formatted duration (e.g. '1w2d') and return its value as a total number of seconds. This is the same function used internally by /GLINE etc to set the ban times.Definition at line 669 of file modules.cpp. .PP References duration(). .PP .nf -669 { -670 return duration(delta.c_str()); -671 } +670 { +671 return duration(delta.c_str()); +672 } .fi .SS "void Server::CallCommandHandler (std::string commandname, char ** parameters, int pcnt, \fBuserrec\fP * user)\fC [virtual]\fP" .PP Calls the handler for a command, either implemented by the core or by another module. You can use this function to trigger other commands in the ircd, such as PRIVMSG, JOIN, KICK etc, or even as a method of callback. By defining command names that are untypeable for users on irc (e.g. those which contain a or .br -) you may use them as callback identifiers. The first parameter to this method is the name of the command handler you wish to call, e.g. PRIVMSG. This will be a command handler previously registered by the core or wih \fBAddCommand()\fP. The second parameter is an array of parameters, and the third parameter is a count of parameters in the array. If you do not pass enough parameters to meet the minimum needed by the handler, the functiom will silently ignore it. The final parameter is the user executing the command handler, used for privilage checks, etc.Definition at line 410 of file modules.cpp. +) you may use them as callback identifiers. The first parameter to this method is the name of the command handler you wish to call, e.g. PRIVMSG. This will be a command handler previously registered by the core or wih \fBAddCommand()\fP. The second parameter is an array of parameters, and the third parameter is a count of parameters in the array. If you do not pass enough parameters to meet the minimum needed by the handler, the functiom will silently ignore it. The final parameter is the user executing the command handler, used for privilage checks, etc.Definition at line 411 of file modules.cpp. .PP .nf -411 { -412 call_handler(commandname.c_str(),parameters,pcnt,user); -413 } +412 { +413 call_handler(commandname.c_str(),parameters,pcnt,user); +414 } .fi .SS "void Server::ChangeGECOS (\fBuserrec\fP * user, std::string gecos)\fC [virtual]\fP" .PP -Change GECOS (fullname) of a user. You should always call this method to change a user's GECOS rather than writing directly to the fullname member of userrec, as any change applied via this method will be propogated to any linked servers.Definition at line 498 of file modules.cpp. +Change GECOS (fullname) of a user. You should always call this method to change a user's GECOS rather than writing directly to the fullname member of userrec, as any change applied via this method will be propogated to any linked servers.Definition at line 499 of file modules.cpp. .PP References ChangeName(). .PP .nf -499 { -500 ChangeName(user,gecos.c_str()); -501 } +500 { +501 ChangeName(user,gecos.c_str()); +502 } .fi .SS "void Server::ChangeHost (\fBuserrec\fP * user, std::string host)\fC [virtual]\fP" .PP -Change displayed hostname of a user. You should always call this method to change a user's host rather than writing directly to the dhost member of userrec, as any change applied via this method will be propogated to any linked servers.Definition at line 493 of file modules.cpp. +Change displayed hostname of a user. You should always call this method to change a user's host rather than writing directly to the dhost member of userrec, as any change applied via this method will be propogated to any linked servers.Definition at line 494 of file modules.cpp. .PP References ChangeDisplayedHost(). .PP .nf -494 { -495 ChangeDisplayedHost(user,host.c_str()); -496 } +495 { +496 ChangeDisplayedHost(user,host.c_str()); +497 } .fi .SS "void Server::ChangeUserNick (\fBuserrec\fP * user, std::string nickname)\fC [virtual]\fP" .PP -Forces a user nickchange. This command works similarly to SVSNICK, and can be used to implement Q-lines etc. If you specify an invalid nickname, the nick change will be dropped and the target user will receive the error numeric for it.Definition at line 394 of file modules.cpp. +Forces a user nickchange. This command works similarly to SVSNICK, and can be used to implement Q-lines etc. If you specify an invalid nickname, the nick change will be dropped and the target user will receive the error numeric for it.Definition at line 395 of file modules.cpp. .PP .nf -395 { -396 force_nickchange(user,nickname.c_str()); -397 } +396 { +397 force_nickchange(user,nickname.c_str()); +398 } .fi .SS "std::string Server::ChanMode (\fBuserrec\fP * User, \fBchanrec\fP * Chan)\fC [virtual]\fP" .PP -Attempts to look up a user's privilages on a channel. This function will return a string containing either @, , +, or an empty string, representing the user's privilages upon the channel you specify.Definition at line 518 of file modules.cpp. +Attempts to look up a user's privilages on a channel. This function will return a string containing either @, , +, or an empty string, representing the user's privilages upon the channel you specify.Definition at line 519 of file modules.cpp. .PP References cmode(). .PP .nf -519 { -520 return cmode(User,Chan); -521 } +520 { +521 return cmode(User,Chan); +522 } .fi .SS "bool Server::CommonChannels (\fBuserrec\fP * u1, \fBuserrec\fP * u2)\fC [virtual]\fP" .PP -Returns true if two users share a common channel. This method is used internally by the NICK and QUIT commands, and the \fBServer::SendCommon\fP method.Definition at line 471 of file modules.cpp. +Returns true if two users share a common channel. This method is used internally by the NICK and QUIT commands, and the \fBServer::SendCommon\fP method.Definition at line 472 of file modules.cpp. .PP References common_channels(). .PP .nf -472 { -473 return (common_channels(u1,u2) != 0); -474 } +473 { +474 return (common_channels(u1,u2) != 0); +475 } .fi .SS "int Server::CountUsers (\fBchanrec\fP * c)\fC [virtual]\fP" .PP -Returns a count of the number of users on a channel. This will NEVER be 0, as if the chanrec exists, it will have at least one user in the channel.Definition at line 573 of file modules.cpp. +Returns a count of the number of users on a channel. This will NEVER be 0, as if the chanrec exists, it will have at least one user in the channel.Definition at line 574 of file modules.cpp. .PP .nf -574 { -575 return usercount(c); -576 } +575 { +576 return usercount(c); +577 } .fi .SS "bool Server::DelELine (std::string hostmask)\fC [virtual]\fP" .PP -Deletes a local E-Line. Definition at line 663 of file modules.cpp. +Deletes a local E-Line. Definition at line 664 of file modules.cpp. .PP References del_eline(). .PP .nf -664 { -665 del_eline(hostmask.c_str()); -666 } +665 { +666 del_eline(hostmask.c_str()); +667 } .fi .SS "bool Server::DelGLine (std::string hostmask)\fC [virtual]\fP" .PP -Deletes a G-Line from all servers on the mesh. Definition at line 643 of file modules.cpp. +Deletes a G-Line from all servers on the mesh. Definition at line 644 of file modules.cpp. .PP References del_gline(). .PP .nf -644 { -645 del_gline(hostmask.c_str()); -646 } +645 { +646 del_gline(hostmask.c_str()); +647 } .fi .SS "bool Server::DelKLine (std::string hostmask)\fC [virtual]\fP" .PP -Deletes a local K-Line. Definition at line 658 of file modules.cpp. +Deletes a local K-Line. Definition at line 659 of file modules.cpp. .PP References del_kline(). .PP .nf -659 { -660 del_kline(hostmask.c_str()); -661 } +660 { +661 del_kline(hostmask.c_str()); +662 } .fi .SS "bool Server::DelQLine (std::string nickname)\fC [virtual]\fP" .PP -Deletes a Q-Line from all servers on the mesh. Definition at line 648 of file modules.cpp. +Deletes a Q-Line from all servers on the mesh. Definition at line 649 of file modules.cpp. .PP References del_qline(). .PP .nf -649 { -650 del_qline(nickname.c_str()); -651 } +650 { +651 del_qline(nickname.c_str()); +652 } .fi .SS "bool Server::DelZLine (std::string ipaddr)\fC [virtual]\fP" .PP -Deletes a Z-Line from all servers on the mesh. Definition at line 653 of file modules.cpp. +Deletes a Z-Line from all servers on the mesh. Definition at line 654 of file modules.cpp. .PP References del_zline(). .PP .nf -654 { -655 del_zline(ipaddr.c_str()); -656 } +655 { +656 del_zline(ipaddr.c_str()); +657 } .fi .SS "\fBchanrec\fP * Server::FindChannel (std::string channel)\fC [virtual]\fP" .PP -Attempts to look up a channel and return a pointer to it. This function will return NULL if the channel does not exist.Definition at line 513 of file modules.cpp. +Attempts to look up a channel and return a pointer to it. This function will return NULL if the channel does not exist.Definition at line 514 of file modules.cpp. .PP .nf -514 { -515 return FindChan(channel.c_str()); -516 } +515 { +516 return FindChan(channel.c_str()); +517 } .fi .SS "\fBuserrec\fP * Server::FindNick (std::string nick)\fC [virtual]\fP" .PP -Attempts to look up a nick and return a pointer to it. This function will return NULL if the nick does not exist.Definition at line 508 of file modules.cpp. +Attempts to look up a nick and return a pointer to it. This function will return NULL if the nick does not exist.Definition at line 509 of file modules.cpp. .PP .nf -509 { -510 return Find(nick); -511 } +510 { +511 return Find(nick); +512 } .fi .SS "\fBAdmin\fP Server::GetAdmin ()\fC [virtual]\fP" .PP -Returns the information of the server as returned by the /ADMIN command. See the \fBAdmin\fP class for further information of the return value. The members \fBAdmin::Nick\fP, \fBAdmin::Email\fP and \fBAdmin::Name\fP contain the information for the server where the module is loaded.Definition at line 538 of file modules.cpp. +Returns the information of the server as returned by the /ADMIN command. See the \fBAdmin\fP class for further information of the return value. The members \fBAdmin::Nick\fP, \fBAdmin::Email\fP and \fBAdmin::Name\fP contain the information for the server where the module is loaded.Definition at line 539 of file modules.cpp. .PP .nf -539 { -540 return Admin(getadminname(),getadminemail(),getadminnick()); -541 } +540 { +541 return Admin(getadminname(),getadminemail(),getadminnick()); +542 } .fi .SS "std::string Server::GetNetworkName ()\fC [virtual]\fP" .PP -Returns the network name, global to all linked servers. Definition at line 533 of file modules.cpp. +Returns the network name, global to all linked servers. Definition at line 534 of file modules.cpp. .PP .nf -534 { -535 return getnetworkname(); -536 } +535 { +536 return getnetworkname(); +537 } .fi .SS "std::string Server::GetServerName ()\fC [virtual]\fP" .PP -Returns the server name of the server where the module is loaded. Definition at line 528 of file modules.cpp. +Returns the server name of the server where the module is loaded. Definition at line 529 of file modules.cpp. .PP .nf -529 { -530 return getservername(); -531 } +530 { +531 return getservername(); +532 } .fi .SS "\fBchanuserlist\fP Server::GetUsers (\fBchanrec\fP * chan)\fC [virtual]\fP" .PP -Fetches the userlist of a channel. This function must be here and not a member of userrec or chanrec due to include constraints.Definition at line 375 of file modules.cpp. +Fetches the userlist of a channel. This function must be here and not a member of userrec or chanrec due to include constraints.Definition at line 376 of file modules.cpp. .PP References chanuserlist, clientlist, has_channel(), and isnick(). .PP .nf -376 { -377 chanuserlist userl; -378 userl.clear(); -379 for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) -380 { -381 if (i->second) -382 { -383 if (has_channel(i->second,chan)) -384 { -385 if (isnick(i->second->nick)) -386 { -387 userl.push_back(i->second); -388 } -389 } -390 } -391 } -392 return userl; -393 } +377 { +378 chanuserlist userl; +379 userl.clear(); +380 for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) +381 { +382 if (i->second) +383 { +384 if (has_channel(i->second,chan)) +385 { +386 if (isnick(i->second->nick)) +387 { +388 userl.push_back(i->second); +389 } +390 } +391 } +392 } +393 return userl; +394 } .fi .SS "bool Server::IsNick (std::string nick)\fC [virtual]\fP" .PP -Returns true if a nick is valid. Nicks for unregistered connections will return false.Definition at line 503 of file modules.cpp. +Returns true if a nick is valid. Nicks for unregistered connections will return false.Definition at line 504 of file modules.cpp. .PP References isnick(). .PP .nf -504 { -505 return (isnick(nick.c_str()) != 0); -506 } +505 { +506 return (isnick(nick.c_str()) != 0); +507 } .fi .SS "bool Server::IsOnChannel (\fBuserrec\fP * User, \fBchanrec\fP * Chan)\fC [virtual]\fP" .PP -Checks if a user is on a channel. This function will return true or false to indicate if user 'User' is on channel 'Chan'.Definition at line 523 of file modules.cpp. +Checks if a user is on a channel. This function will return true or false to indicate if user 'User' is on channel 'Chan'.Definition at line 524 of file modules.cpp. .PP References has_channel(). .PP .nf -524 { -525 return has_channel(User,Chan); -526 } +525 { +526 return has_channel(User,Chan); +527 } .fi .SS "bool Server::IsUlined (std::string server)\fC [virtual]\fP" .PP -Returns true if the servername you give is ulined. ULined servers have extra privilages. They are allowed to change nicknames on remote servers, change modes of clients which are on remote servers and set modes of channels where there are no channel operators for that channel on the ulined server, amongst other things. Ulined server data is also broadcast across the mesh at all times as opposed to selectively messaged in the case of normal servers, as many ulined server types (such as services) do not support meshed links and must operate in this manner.Definition at line 405 of file modules.cpp. +Returns true if the servername you give is ulined. ULined servers have extra privilages. They are allowed to change nicknames on remote servers, change modes of clients which are on remote servers and set modes of channels where there are no channel operators for that channel on the ulined server, amongst other things. Ulined server data is also broadcast across the mesh at all times as opposed to selectively messaged in the case of normal servers, as many ulined server types (such as services) do not support meshed links and must operate in this manner.Definition at line 406 of file modules.cpp. .PP References is_uline(). .PP .nf -406 { -407 return is_uline(server.c_str()); -408 } +407 { +408 return is_uline(server.c_str()); +409 } .fi .SS "\fBchanrec\fP * Server::JoinUserToChannel (\fBuserrec\fP * user, std::string cname, std::string key)\fC [virtual]\fP" .PP -Forces a user to join a channel. This is similar to svsjoin and can be used to implement redirection, etc. On success, the return value is a valid pointer to a chanrec* of the channel the user was joined to. On failure, the result is NULL.Definition at line 365 of file modules.cpp. +Forces a user to join a channel. This is similar to svsjoin and can be used to implement redirection, etc. On success, the return value is a valid pointer to a chanrec* of the channel the user was joined to. On failure, the result is NULL.Definition at line 366 of file modules.cpp. .PP .nf -366 { -367 return add_channel(user,cname.c_str(),key.c_str(),true); -368 } +367 { +368 return add_channel(user,cname.c_str(),key.c_str(),true); +369 } .fi .SS "void Server::Log (int level, std::string s)\fC [virtual]\fP" .PP -Writes a log string. This method writes a line of text to the log. If the level given is lower than the level given in the configuration, this command has no effect.Definition at line 415 of file modules.cpp. +Writes a log string. This method writes a line of text to the log. If the level given is lower than the level given in the configuration, this command has no effect.Definition at line 416 of file modules.cpp. .PP .nf -416 { -417 log(level,'%s',s.c_str()); -418 } +417 { +418 log(level,'%s',s.c_str()); +419 } .fi .SS "bool Server::MatchText (std::string sliteral, std::string spattern)\fC [virtual]\fP" .PP -Matches text against a glob pattern. Uses the ircd's internal matching function to match string against a globbing pattern, e.g. *!*@*.com Returns true if the literal successfully matches the pattern, false if otherwise.Definition at line 352 of file modules.cpp. +Matches text against a glob pattern. Uses the ircd's internal matching function to match string against a globbing pattern, e.g. *!*@*.com Returns true if the literal successfully matches the pattern, false if otherwise.Definition at line 353 of file modules.cpp. .PP .nf -353 { -354 char literal[MAXBUF],pattern[MAXBUF]; -355 strlcpy(literal,sliteral.c_str(),MAXBUF); -356 strlcpy(pattern,spattern.c_str(),MAXBUF); -357 return match(literal,pattern); -358 } +354 { +355 char literal[MAXBUF],pattern[MAXBUF]; +356 strlcpy(literal,sliteral.c_str(),MAXBUF); +357 strlcpy(pattern,spattern.c_str(),MAXBUF); +358 return match(literal,pattern); +359 } .fi .SS "\fBchanrec\fP * Server::PartUserFromChannel (\fBuserrec\fP * user, std::string cname, std::string reason)\fC [virtual]\fP" .PP -Forces a user to part a channel. This is similar to svspart and can be used to implement redirection, etc. Although the return value of this function is a pointer to a channel record, the returned data is undefined and should not be read or written to. This behaviour may be changed in a future version.Definition at line 370 of file modules.cpp. +Forces a user to part a channel. This is similar to svspart and can be used to implement redirection, etc. Although the return value of this function is a pointer to a channel record, the returned data is undefined and should not be read or written to. This behaviour may be changed in a future version.Definition at line 371 of file modules.cpp. .PP .nf -371 { -372 return del_channel(user,cname.c_str(),reason.c_str(),false); -373 } +372 { +373 return del_channel(user,cname.c_str(),reason.c_str(),false); +374 } .fi .SS "bool Server::PseudoToUser (\fBuserrec\fP * alive, \fBuserrec\fP * zombie, std::string message)\fC [virtual]\fP" .PP -This user takes one user, and switches their file descriptor with another user, so that one user 'becomes' the other. The user in 'alive' is booted off the server with the given message. The user referred to by 'zombie' should have previously been locked with Server::ZombifyUser, otherwise stale sockets and file descriptor leaks can occur. After this call, the pointer to alive will be invalid, and the pointer to zombie will be equivalent in effect to the old pointer to alive.Definition at line 588 of file modules.cpp. +This user takes one user, and switches their file descriptor with another user, so that one user 'becomes' the other. The user in 'alive' is booted off the server with the given message. The user referred to by 'zombie' should have previously been locked with Server::ZombifyUser, otherwise stale sockets and file descriptor leaks can occur. After this call, the pointer to alive will be invalid, and the pointer to zombie will be equivalent in effect to the old pointer to alive.Definition at line 589 of file modules.cpp. .PP References ucrec::channel, userrec::chans, chanrec::created, connection::fd, FD_MAGIC_NUMBER, connection::host, userrec::ident, chanrec::name, userrec::nick, chanrec::setby, chanrec::topic, and chanrec::topicset. .PP .nf -589 { -590 zombie->fd = alive->fd; -591 alive->fd = FD_MAGIC_NUMBER; -592 Write(zombie->fd,':%s!%s@%s NICK %s',alive->nick,alive->ident,alive->host,zombie->nick); -593 kill_link(alive,message.c_str()); -594 for (int i = 0; i != MAXCHANS; i++) -595 { -596 if (zombie->chans[i].channel != NULL) -597 { -598 if (zombie->chans[i].channel->name) -599 { -600 chanrec* Ptr = zombie->chans[i].channel; -601 WriteFrom(zombie->fd,zombie,'JOIN %s',Ptr->name); -602 if (Ptr->topicset) -603 { -604 WriteServ(zombie->fd,'332 %s %s :%s', zombie->nick, Ptr->name, Ptr->topic); -605 WriteServ(zombie->fd,'333 %s %s %s %d', zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); -606 } -607 userlist(zombie,Ptr); -608 WriteServ(zombie->fd,'366 %s %s :End of /NAMES list.', zombie->nick, Ptr->name); -609 WriteServ(zombie->fd,'324 %s %s +%s',zombie->nick, Ptr->name,chanmodes(Ptr)); -610 WriteServ(zombie->fd,'329 %s %s %d', zombie->nick, Ptr->name, Ptr->created); -611 -612 } -613 } -614 } -615 -616 } +590 { +591 zombie->fd = alive->fd; +592 alive->fd = FD_MAGIC_NUMBER; +593 Write(zombie->fd,':%s!%s@%s NICK %s',alive->nick,alive->ident,alive->host,zombie->nick); +594 kill_link(alive,message.c_str()); +595 for (int i = 0; i != MAXCHANS; i++) +596 { +597 if (zombie->chans[i].channel != NULL) +598 { +599 if (zombie->chans[i].channel->name) +600 { +601 chanrec* Ptr = zombie->chans[i].channel; +602 WriteFrom(zombie->fd,zombie,'JOIN %s',Ptr->name); +603 if (Ptr->topicset) +604 { +605 WriteServ(zombie->fd,'332 %s %s :%s', zombie->nick, Ptr->name, Ptr->topic); +606 WriteServ(zombie->fd,'333 %s %s %s %d', zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); +607 } +608 userlist(zombie,Ptr); +609 WriteServ(zombie->fd,'366 %s %s :End of /NAMES list.', zombie->nick, Ptr->name); +610 WriteServ(zombie->fd,'324 %s %s +%s',zombie->nick, Ptr->name,chanmodes(Ptr)); +611 WriteServ(zombie->fd,'329 %s %s %d', zombie->nick, Ptr->name, Ptr->created); +612 +613 } +614 } +615 } +616 +617 } .fi .SS "void Server::QuitUser (\fBuserrec\fP * user, std::string reason)\fC [virtual]\fP" .PP @@ -683,65 +683,65 @@ Forces a user to quit with the specified reason. To the user, it will appear as .PP WARNING! .PP -Once you call this function, userrec* user will immediately become INVALID. You MUST NOT write to, or read from this pointer after calling the QuitUser method UNDER ANY CIRCUMSTANCES! The best course of action after calling this method is to immediately bail from your handler.Definition at line 399 of file modules.cpp. +Once you call this function, userrec* user will immediately become INVALID. You MUST NOT write to, or read from this pointer after calling the QuitUser method UNDER ANY CIRCUMSTANCES! The best course of action after calling this method is to immediately bail from your handler.Definition at line 400 of file modules.cpp. .PP References userrec::nick, and send_network_quit(). .PP .nf -400 { -401 send_network_quit(user->nick,reason.c_str()); -402 kill_link(user,reason.c_str()); -403 } +401 { +402 send_network_quit(user->nick,reason.c_str()); +403 kill_link(user,reason.c_str()); +404 } .fi .SS "void Server::Send (int Socket, std::string s)\fC [virtual]\fP" .PP -Sends a line of text down a TCP/IP socket. This method writes a line of text to an established socket, cutting it to 510 characters plus a carriage return and linefeed if required.Definition at line 430 of file modules.cpp. +Sends a line of text down a TCP/IP socket. This method writes a line of text to an established socket, cutting it to 510 characters plus a carriage return and linefeed if required.Definition at line 431 of file modules.cpp. .PP .nf -431 { -432 Write(Socket,'%s',s.c_str()); -433 } +432 { +433 Write(Socket,'%s',s.c_str()); +434 } .fi .SS "void Server::SendChannel (\fBuserrec\fP * User, \fBchanrec\fP * Channel, std::string s, bool IncludeSender)\fC [virtual]\fP" .PP -Sends text from a user to a channel (mulicast). This method writes a line of text to a channel, with the given user's nick/ident /host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in MODE (see RFC 1459).Definition at line 459 of file modules.cpp. +Sends text from a user to a channel (mulicast). This method writes a line of text to a channel, with the given user's nick/ident /host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in MODE (see RFC 1459).Definition at line 460 of file modules.cpp. .PP .nf -460 { -461 if (IncludeSender) -462 { -463 WriteChannel(Channel,User,'%s',s.c_str()); -464 } -465 else -466 { -467 ChanExceptSender(Channel,User,'%s',s.c_str()); -468 } -469 } +461 { +462 if (IncludeSender) +463 { +464 WriteChannel(Channel,User,'%s',s.c_str()); +465 } +466 else +467 { +468 ChanExceptSender(Channel,User,'%s',s.c_str()); +469 } +470 } .fi .SS "void Server::SendCommon (\fBuserrec\fP * User, std::string text, bool IncludeSender)\fC [virtual]\fP" .PP -Sends text from a user to one or more channels (mulicast). This method writes a line of text to all users which share a common channel with a given user, with the user's nick/ident/host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in NICK (see RFC 1459). Otherwise, it is only sent to the other recipients, as seen in QUIT.Definition at line 476 of file modules.cpp. +Sends text from a user to one or more channels (mulicast). This method writes a line of text to all users which share a common channel with a given user, with the user's nick/ident/host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in NICK (see RFC 1459). Otherwise, it is only sent to the other recipients, as seen in QUIT.Definition at line 477 of file modules.cpp. .PP .nf -477 { -478 if (IncludeSender) -479 { -480 WriteCommon(User,'%s',text.c_str()); -481 } -482 else -483 { -484 WriteCommonExcept(User,'%s',text.c_str()); -485 } -486 } +478 { +479 if (IncludeSender) +480 { +481 WriteCommon(User,'%s',text.c_str()); +482 } +483 else +484 { +485 WriteCommonExcept(User,'%s',text.c_str()); +486 } +487 } .fi .SS "void Server::SendFrom (int Socket, \fBuserrec\fP * User, std::string s)\fC [virtual]\fP" .PP -Sends text from a user to a socket. This method writes a line of text to an established socket, with the given user's nick/ident /host combination prepended, as used in PRIVSG etc commands (see RFC 1459)Definition at line 440 of file modules.cpp. +Sends text from a user to a socket. This method writes a line of text to an established socket, with the given user's nick/ident /host combination prepended, as used in PRIVSG etc commands (see RFC 1459)Definition at line 441 of file modules.cpp. .PP .nf -441 { -442 WriteFrom(Socket,User,'%s',s.c_str()); -443 } +442 { +443 WriteFrom(Socket,User,'%s',s.c_str()); +444 } .fi .SS "void Server::SendMode (char ** parameters, int pcnt, \fBuserrec\fP * user)\fC [virtual]\fP" .PP @@ -759,32 +759,32 @@ modes[2] = user->nick; .PP Srv->SendMode(modes,3,user); .PP -The modes will originate from the server where the command was issued, however responses (e.g. numerics) will be sent to the user you provide as the third parameter. You must be sure to get the number of parameters correct in the pcnt parameter otherwise you could leave your server in an unstable state!Definition at line 425 of file modules.cpp. +The modes will originate from the server where the command was issued, however responses (e.g. numerics) will be sent to the user you provide as the third parameter. You must be sure to get the number of parameters correct in the pcnt parameter otherwise you could leave your server in an unstable state!Definition at line 426 of file modules.cpp. .PP References server_mode(). .PP .nf -426 { -427 server_mode(parameters,pcnt,user); -428 } +427 { +428 server_mode(parameters,pcnt,user); +429 } .fi .SS "void Server::SendOpers (std::string s)\fC [virtual]\fP" .PP -Sends text to all opers. This method sends a server notice to all opers with the usermode +s.Definition at line 347 of file modules.cpp. +Sends text to all opers. This method sends a server notice to all opers with the usermode +s.Definition at line 348 of file modules.cpp. .PP .nf -348 { -349 WriteOpers('%s',s.c_str()); -350 } +349 { +350 WriteOpers('%s',s.c_str()); +351 } .fi .SS "void Server::SendServ (int Socket, std::string s)\fC [virtual]\fP" .PP -Sends text from the server to a socket. This method writes a line of text to an established socket, with the servername prepended as used by numerics (see RFC 1459)Definition at line 435 of file modules.cpp. +Sends text from the server to a socket. This method writes a line of text to an established socket, with the servername prepended as used by numerics (see RFC 1459)Definition at line 436 of file modules.cpp. .PP .nf -436 { -437 WriteServ(Socket,'%s',s.c_str()); -438 } +437 { +438 WriteServ(Socket,'%s',s.c_str()); +439 } .fi .SS "void Server::SendTo (\fBuserrec\fP * Source, \fBuserrec\fP * Dest, std::string s)\fC [virtual]\fP" .PP @@ -796,23 +796,23 @@ The format will become: .PP :localserver TEXT .PP -Which is useful for numerics and server notices to single users, etc.Definition at line 445 of file modules.cpp. +Which is useful for numerics and server notices to single users, etc.Definition at line 446 of file modules.cpp. .PP References connection::fd. .PP .nf -446 { -447 if (!Source) -448 { -449 // if source is NULL, then the message originates from the local server -450 Write(Dest->fd,':%s %s',this->GetServerName().c_str(),s.c_str()); -451 } -452 else -453 { -454 // otherwise it comes from the user specified -455 WriteTo(Source,Dest,'%s',s.c_str()); -456 } -457 } +447 { +448 if (!Source) +449 { +450 // if source is NULL, then the message originates from the local server +451 Write(Dest->fd,':%s %s',this->GetServerName().c_str(),s.c_str()); +452 } +453 else +454 { +455 // otherwise it comes from the user specified +456 WriteTo(Source,Dest,'%s',s.c_str()); +457 } +458 } .fi .SS "void Server::SendToModeMask (std::string modes, int flags, std::string text)\fC [virtual]\fP" .PP @@ -820,36 +820,36 @@ Sends to all users matching a mode mask You must specify one or more usermodes a .PP Serv->SendToModeMask('xi', WM_OR, 'm00'); .PP -Then the text 'm00' will be sent to all users with EITHER mode x or i. Conversely if you used WM_AND, the user must have both modes set to receive the message.Definition at line 360 of file modules.cpp. +Then the text 'm00' will be sent to all users with EITHER mode x or i. Conversely if you used WM_AND, the user must have both modes set to receive the message.Definition at line 361 of file modules.cpp. .PP .nf -361 { -362 WriteMode(modes.c_str(),flags,'%s',text.c_str()); -363 } +362 { +363 WriteMode(modes.c_str(),flags,'%s',text.c_str()); +364 } .fi .SS "void Server::SendWallops (\fBuserrec\fP * User, std::string text)\fC [virtual]\fP" .PP -Sends a WALLOPS message. This method writes a WALLOPS message to all users with the +w flag, originating from the specified user.Definition at line 488 of file modules.cpp. +Sends a WALLOPS message. This method writes a WALLOPS message to all users with the +w flag, originating from the specified user.Definition at line 489 of file modules.cpp. .PP .nf -489 { -490 WriteWallOps(User,false,'%s',text.c_str()); -491 } +490 { +491 WriteWallOps(User,false,'%s',text.c_str()); +492 } .fi .SS "bool Server::UserToPseudo (\fBuserrec\fP * user, std::string message)\fC [virtual]\fP" .PP -Remove a user's connection to the irc server, but leave their client in existence in the user hash. When you call this function, the user's file descriptor will be replaced with the value of FD_MAGIC_NUMBER and their old file descriptor will be closed. This idle client will remain until it is restored with a valid file descriptor, or is removed from IRC by an operator After this call, the pointer to user will be invalid.Definition at line 579 of file modules.cpp. +Remove a user's connection to the irc server, but leave their client in existence in the user hash. When you call this function, the user's file descriptor will be replaced with the value of FD_MAGIC_NUMBER and their old file descriptor will be closed. This idle client will remain until it is restored with a valid file descriptor, or is removed from IRC by an operator After this call, the pointer to user will be invalid.Definition at line 580 of file modules.cpp. .PP References connection::fd, FD_MAGIC_NUMBER, connection::host, and userrec::ident. .PP .nf -580 { -581 unsigned int old_fd = user->fd; -582 user->fd = FD_MAGIC_NUMBER; -583 Write(old_fd,'ERROR :Closing link (%s@%s) [%s]',user->ident,user->host,message.c_str()); -584 close(old_fd); -585 shutdown (old_fd,2); -586 } +581 { +582 unsigned int old_fd = user->fd; +583 user->fd = FD_MAGIC_NUMBER; +584 Write(old_fd,'ERROR :Closing link (%s@%s) [%s]',user->ident,user->host,message.c_str()); +585 close(old_fd); +586 shutdown (old_fd,2); +587 } .fi diff --git a/docs/man/man3/channels.cpp.3 b/docs/man/man3/channels.cpp.3 index f6e000195..5ca0d4b62 100644 --- a/docs/man/man3/channels.cpp.3 +++ b/docs/man/man3/channels.cpp.3 @@ -271,7 +271,7 @@ Definition at line 88 of file channels.cpp. Definition at line 103 of file channels.cpp. .SS "int \fBMODCOUNT\fP = -1" .PP -Definition at line 871 of file modules.cpp. +Definition at line 872 of file modules.cpp. .SS "std::vector \fBmodule_names\fP" .PP Definition at line 92 of file channels.cpp. diff --git a/docs/man/man3/modules.cpp.3 b/docs/man/man3/modules.cpp.3 index 855e8a16f..4185e3dfb 100644 --- a/docs/man/man3/modules.cpp.3 +++ b/docs/man/man3/modules.cpp.3 @@ -533,7 +533,7 @@ Definition at line 91 of file modules.cpp. Definition at line 106 of file modules.cpp. .SS "int \fBMODCOUNT\fP = -1" .PP -Definition at line 871 of file modules.cpp. +Definition at line 872 of file modules.cpp. .SS "std::vector \fBmodule_names\fP" .PP Definition at line 95 of file modules.cpp. diff --git a/docs/man/man3/modules.h.3 b/docs/man/man3/modules.h.3 index 092567805..2ef88ae51 100644 --- a/docs/man/man3/modules.h.3 +++ b/docs/man/man3/modules.h.3 @@ -218,22 +218,22 @@ Referenced by Module::OnAccessCheck(). Definition at line 38 of file modules.h. .SS "#define CONF_FILE_NOT_FOUND 0x000200" .PP -Definition at line 772 of file modules.h. +Definition at line 782 of file modules.h. .PP Referenced by ConfigReader::ConfigReader(). .SS "#define CONF_NOT_A_NUMBER 0x000010" .PP -Definition at line 769 of file modules.h. +Definition at line 779 of file modules.h. .PP Referenced by ConfigReader::ReadInteger(). .SS "#define CONF_NOT_UNSIGNED 0x000080" .PP -Definition at line 770 of file modules.h. +Definition at line 780 of file modules.h. .PP Referenced by ConfigReader::ReadInteger(). .SS "#define CONF_VALUE_NOT_FOUND 0x000100" .PP -Definition at line 771 of file modules.h. +Definition at line 781 of file modules.h. .PP Referenced by ConfigReader::ReadFlag(), ConfigReader::ReadInteger(), and ConfigReader::ReadValue(). .SS "#define DEBUG 10" @@ -319,7 +319,7 @@ Low level definition of a \fBFileReader\fP classes file cache area. Definition a Referenced by FileReader::FileReader(), and FileReader::LoadFile(). .SS "typedef DLLFactory<\fBModuleFactory\fP> \fBircd_module\fP" .PP -Definition at line 937 of file modules.h. +Definition at line 947 of file modules.h. .SS "typedef \fBfile_cache\fP \fBstring_list\fP" .PP Definition at line 68 of file modules.h. diff --git a/docs/module-doc/annotated.html b/docs/module-doc/annotated.html index a286b898e..063ba905d 100644 --- a/docs/module-doc/annotated.html +++ b/docs/module-doc/annotated.html @@ -44,7 +44,7 @@ XLineXLine is the base class for ban lines such as G lines and K lines ZLineZLine class -
Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:59 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/base_8h-source.html b/docs/module-doc/base_8h-source.html index 165212158..d74fe850b 100644 --- a/docs/module-doc/base_8h-source.html +++ b/docs/module-doc/base_8h-source.html @@ -55,7 +55,7 @@ 00079 00080 #endif 00081 -
Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:51 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/base_8h.html b/docs/module-doc/base_8h.html index f00eb40e6..2b801d16a 100644 --- a/docs/module-doc/base_8h.html +++ b/docs/module-doc/base_8h.html @@ -49,7 +49,7 @@ Definition at line 25 of file base.h. -
Generated on Wed Apr 13 12:32:17 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:55 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/channels_8cpp-source.html b/docs/module-doc/channels_8cpp-source.html index cc6c02574..feec5850b 100644 --- a/docs/module-doc/channels_8cpp-source.html +++ b/docs/module-doc/channels_8cpp-source.html @@ -204,7 +204,7 @@ 00197 } 00198 return std::string(""); 00199 } -
Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:51 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/channels_8cpp.html b/docs/module-doc/channels_8cpp.html index 9405c9d8a..02b46ae0a 100644 --- a/docs/module-doc/channels_8cpp.html +++ b/docs/module-doc/channels_8cpp.html @@ -631,7 +631,7 @@ Definition at line 103

-Definition at line 871 of file modules.cpp. +Definition at line 872 of file modules.cpp.

@@ -1068,7 +1068,7 @@ Definition at line 84 Definition at line 83 of file channels.cpp. -


Generated on Wed Apr 13 12:32:18 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:56 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/channels_8h-source.html b/docs/module-doc/channels_8h-source.html index 4d6de2cc9..a06c53542 100644 --- a/docs/module-doc/channels_8h-source.html +++ b/docs/module-doc/channels_8h-source.html @@ -139,7 +139,7 @@ 00218 00219 #endif 00220 -
Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:51 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/channels_8h.html b/docs/module-doc/channels_8h.html index 8c03d404e..61e8e1065 100644 --- a/docs/module-doc/channels_8h.html +++ b/docs/module-doc/channels_8h.html @@ -258,7 +258,7 @@ Holds a complete invite list. Definition at line 88 of file channels.h. -
Generated on Wed Apr 13 12:32:18 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:56 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classAdmin-members.html b/docs/module-doc/classAdmin-members.html index 10523942f..ec44fe4b4 100644 --- a/docs/module-doc/classAdmin-members.html +++ b/docs/module-doc/classAdmin-members.html @@ -13,7 +13,7 @@ NameAdmin NickAdmin ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:00 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classAdmin.html b/docs/module-doc/classAdmin.html index 00ed8aea1..9207c24c3 100644 --- a/docs/module-doc/classAdmin.html +++ b/docs/module-doc/classAdmin.html @@ -157,7 +157,7 @@ Definition at line 126 of
The documentation for this class was generated from the following files: -
Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:00 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classBanItem-members.html b/docs/module-doc/classBanItem-members.html index 4660e0cf8..9d10e7e0c 100644 --- a/docs/module-doc/classBanItem-members.html +++ b/docs/module-doc/classBanItem-members.html @@ -14,7 +14,7 @@ set_timeHostItem ~classbase()classbase [inline] ~HostItem()HostItem [inline, virtual] -
Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:00 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classBanItem.html b/docs/module-doc/classBanItem.html index af0823eec..7fe70ef2e 100644 --- a/docs/module-doc/classBanItem.html +++ b/docs/module-doc/classBanItem.html @@ -22,7 +22,7 @@ A subclass of HostItem designed to h

Definition at line 45 of file channels.h.


The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:00 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classConfigReader-members.html b/docs/module-doc/classConfigReader-members.html index a4c081883..093439ed2 100644 --- a/docs/module-doc/classConfigReader-members.html +++ b/docs/module-doc/classConfigReader-members.html @@ -24,7 +24,7 @@ Verify()ConfigReader ~classbase()classbase [inline] ~ConfigReader()ConfigReader -
Generated on Wed Apr 13 12:32:23 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:02 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classConfigReader.html b/docs/module-doc/classConfigReader.html index 76cdeb810..1e81811f5 100644 --- a/docs/module-doc/classConfigReader.html +++ b/docs/module-doc/classConfigReader.html @@ -67,7 +67,7 @@ It may either be instantiated with one parameter or none. Constructing the class

-Definition at line 780 of file modules.h.


Constructor & Destructor Documentation

+Definition at line 790 of file modules.h.

Constructor & Destructor Documentation

@@ -97,17 +97,17 @@ Default constructor.

This constructor initialises the ConfigReader class to read the inspircd.conf file as specified when running ./configure.

-Definition at line 674 of file modules.cpp. +Definition at line 675 of file modules.cpp.

-References cache, CONF_FILE_NOT_FOUND, error, errorlog, and readerror. +References cache, CONF_FILE_NOT_FOUND, error, errorlog, and readerror.

-

00675 {
-00676         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
-00677         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
-00678         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
-00679         if (!this->readerror)
-00680                 this->error = CONF_FILE_NOT_FOUND;
-00681 }
+
00676 {
+00677         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
+00678         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
+00679         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
+00680         if (!this->readerror)
+00681                 this->error = CONF_FILE_NOT_FOUND;
+00682 }
 
@@ -141,17 +141,17 @@ Overloaded constructor.

This constructor initialises the ConfigReader class to read a user-specified config file

-Definition at line 693 of file modules.cpp. +Definition at line 694 of file modules.cpp.

-References cache, CONF_FILE_NOT_FOUND, error, errorlog, and readerror. +References cache, CONF_FILE_NOT_FOUND, error, errorlog, and readerror.

-

00694 {
-00695         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
-00696         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
-00697         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
-00698         if (!this->readerror)
-00699                 this->error = CONF_FILE_NOT_FOUND;
-00700 };
+
00695 {
+00696         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
+00697         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
+00698         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
+00699         if (!this->readerror)
+00700                 this->error = CONF_FILE_NOT_FOUND;
+00701 };
 
@@ -184,16 +184,16 @@ Default destructor.

This method destroys the ConfigReader class.

-Definition at line 684 of file modules.cpp. +Definition at line 685 of file modules.cpp.

-References cache, and errorlog. +References cache, and errorlog.

-

00685 {
-00686         if (this->cache)
-00687                 delete this->cache;
-00688         if (this->errorlog)
-00689                 delete this->errorlog;
-00690 }
+
00686 {
+00687         if (this->cache)
+00688                 delete this->cache;
+00689         if (this->errorlog)
+00690                 delete this->errorlog;
+00691 }
 
@@ -237,40 +237,40 @@ Dumps the list of errors in a config file to an output location.

If bail is true, then the program will abort. If bail is false and user points to a valid user record, the error report will be spooled to the given user by means of NOTICE. if bool is false AND user is false, the error report will be spooled to all opers by means of a NOTICE to all opers.

-Definition at line 771 of file modules.cpp. -

-References errorlog, connection::fd, and userrec::nick. -

-

00772 {
-00773         if (bail)
-00774         {
-00775                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
-00776                 exit(0);
-00777         }
-00778         else
-00779         {
-00780                 char dataline[1024];
-00781                 if (user)
-00782                 {
-00783                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
-00784                         while (!errorlog->eof())
-00785                         {
-00786                                 errorlog->getline(dataline,1024);
-00787                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
-00788                         }
-00789                 }
-00790                 else
-00791                 {
-00792                         WriteOpers("There were errors in the configuration file:",user->nick);
-00793                         while (!errorlog->eof())
-00794                         {
-00795                                 errorlog->getline(dataline,1024);
-00796                                 WriteOpers(dataline);
-00797                         }
-00798                 }
-00799                 return;
-00800         }
-00801 }
+Definition at line 772 of file modules.cpp.
+

+References errorlog, connection::fd, and userrec::nick. +

+

00773 {
+00774         if (bail)
+00775         {
+00776                 printf("There were errors in your configuration:\n%s",errorlog->str().c_str());
+00777                 exit(0);
+00778         }
+00779         else
+00780         {
+00781                 char dataline[1024];
+00782                 if (user)
+00783                 {
+00784                         WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick);
+00785                         while (!errorlog->eof())
+00786                         {
+00787                                 errorlog->getline(dataline,1024);
+00788                                 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline);
+00789                         }
+00790                 }
+00791                 else
+00792                 {
+00793                         WriteOpers("There were errors in the configuration file:",user->nick);
+00794                         while (!errorlog->eof())
+00795                         {
+00796                                 errorlog->getline(dataline,1024);
+00797                                 WriteOpers(dataline);
+00798                         }
+00799                 }
+00800                 return;
+00801         }
+00802 }
 
@@ -304,13 +304,13 @@ Counts the number of times a given tag appears in the config file.

This method counts the number of times a tag appears in a config file, for use where there are several tags of the same kind, e.g. with opers and connect types. It can be used with the index value of ConfigReader::ReadValue to loop through all copies of a multiple instance tag.

-Definition at line 804 of file modules.cpp. +Definition at line 805 of file modules.cpp.

-References cache. +References cache.

-

00805 {
-00806         return EnumConf(cache,tag.c_str());
-00807 }
+
00806 {
+00807         return EnumConf(cache,tag.c_str());
+00808 }
 
@@ -353,13 +353,13 @@ Returns the number of items within a tag.

For example if the tag was <test tag="blah" data="foo"> then this function would return 2. Spaces and newlines both qualify as valid seperators between values.

-Definition at line 809 of file modules.cpp. +Definition at line 810 of file modules.cpp.

-References cache. +References cache.

-

00810 {
-00811         return EnumValues(cache, tag.c_str(), index);
-00812 }
+
00811 {
+00812         return EnumValues(cache, tag.c_str(), index);
+00813 }
 
@@ -392,15 +392,15 @@ Returns the last error to occur.

Valid errors can be found by looking in modules.h. Any nonzero value indicates an error condition. A call to GetError() resets the error flag back to 0.

-Definition at line 764 of file modules.cpp. +Definition at line 765 of file modules.cpp.

-References error. +References error.

-

00765 {
-00766         long olderr = this->error;
-00767         this->error = 0;
-00768         return olderr;
-00769 }
+
00766 {
+00767         long olderr = this->error;
+00768         this->error = 0;
+00769         return olderr;
+00770 }
 
@@ -449,25 +449,25 @@ Retrieves a boolean value from the config file.

This method retrieves a boolean value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve. The values "1", "yes" and "true" in the config file count as true to ReadFlag, and any other value counts as false.

-Definition at line 718 of file modules.cpp. -

-References cache, CONF_VALUE_NOT_FOUND, and error. -

-

00719 {
-00720         char val[MAXBUF];
-00721         char t[MAXBUF];
-00722         char n[MAXBUF];
-00723         strlcpy(t,tag.c_str(),MAXBUF);
-00724         strlcpy(n,name.c_str(),MAXBUF);
-00725         int res = ReadConf(cache,t,n,index,val);
-00726         if (!res)
-00727         {
-00728                 this->error = CONF_VALUE_NOT_FOUND;
-00729                 return false;
-00730         }
-00731         std::string s = val;
-00732         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
-00733 }
+Definition at line 719 of file modules.cpp.
+

+References cache, CONF_VALUE_NOT_FOUND, and error. +

+

00720 {
+00721         char val[MAXBUF];
+00722         char t[MAXBUF];
+00723         char n[MAXBUF];
+00724         strlcpy(t,tag.c_str(),MAXBUF);
+00725         strlcpy(n,name.c_str(),MAXBUF);
+00726         int res = ReadConf(cache,t,n,index,val);
+00727         if (!res)
+00728         {
+00729                 this->error = CONF_VALUE_NOT_FOUND;
+00730                 return false;
+00731         }
+00732         std::string s = val;
+00733         return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1"));
+00734 }
 
@@ -522,37 +522,37 @@ Retrieves an integer value from the config file.

This method retrieves an integer value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve. Any invalid integer values in the tag will cause the objects error value to be set, and any call to GetError() will return CONF_INVALID_NUMBER to be returned. needs_unsigned is set if the number must be unsigned. If a signed number is placed into a tag which is specified unsigned, 0 will be returned and GetError() will return CONF_NOT_UNSIGNED

-Definition at line 735 of file modules.cpp. -

-References cache, CONF_NOT_A_NUMBER, CONF_NOT_UNSIGNED, CONF_VALUE_NOT_FOUND, and error. -

-

00736 {
-00737         char val[MAXBUF];
-00738         char t[MAXBUF];
-00739         char n[MAXBUF];
-00740         strlcpy(t,tag.c_str(),MAXBUF);
-00741         strlcpy(n,name.c_str(),MAXBUF);
-00742         int res = ReadConf(cache,t,n,index,val);
-00743         if (!res)
-00744         {
-00745                 this->error = CONF_VALUE_NOT_FOUND;
-00746                 return 0;
-00747         }
-00748         for (int i = 0; i < strlen(val); i++)
-00749         {
-00750                 if (!isdigit(val[i]))
-00751                 {
-00752                         this->error = CONF_NOT_A_NUMBER;
-00753                         return 0;
-00754                 }
-00755         }
-00756         if ((needs_unsigned) && (atoi(val)<0))
-00757         {
-00758                 this->error = CONF_NOT_UNSIGNED;
-00759                 return 0;
-00760         }
-00761         return atoi(val);
-00762 }
+Definition at line 736 of file modules.cpp.
+

+References cache, CONF_NOT_A_NUMBER, CONF_NOT_UNSIGNED, CONF_VALUE_NOT_FOUND, and error. +

+

00737 {
+00738         char val[MAXBUF];
+00739         char t[MAXBUF];
+00740         char n[MAXBUF];
+00741         strlcpy(t,tag.c_str(),MAXBUF);
+00742         strlcpy(n,name.c_str(),MAXBUF);
+00743         int res = ReadConf(cache,t,n,index,val);
+00744         if (!res)
+00745         {
+00746                 this->error = CONF_VALUE_NOT_FOUND;
+00747                 return 0;
+00748         }
+00749         for (int i = 0; i < strlen(val); i++)
+00750         {
+00751                 if (!isdigit(val[i]))
+00752                 {
+00753                         this->error = CONF_NOT_A_NUMBER;
+00754                         return 0;
+00755                 }
+00756         }
+00757         if ((needs_unsigned) && (atoi(val)<0))
+00758         {
+00759                 this->error = CONF_NOT_UNSIGNED;
+00760                 return 0;
+00761         }
+00762         return atoi(val);
+00763 }
 
@@ -601,24 +601,24 @@ Retrieves a value from the config file.

This method retrieves a value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve.

-Definition at line 702 of file modules.cpp. -

-References cache, CONF_VALUE_NOT_FOUND, and error. -

-

00703 {
-00704         char val[MAXBUF];
-00705         char t[MAXBUF];
-00706         char n[MAXBUF];
-00707         strlcpy(t,tag.c_str(),MAXBUF);
-00708         strlcpy(n,name.c_str(),MAXBUF);
-00709         int res = ReadConf(cache,t,n,index,val);
-00710         if (!res)
-00711         {
-00712                 this->error = CONF_VALUE_NOT_FOUND;
-00713                 return "";
-00714         }
-00715         return std::string(val);
-00716 }
+Definition at line 703 of file modules.cpp.
+

+References cache, CONF_VALUE_NOT_FOUND, and error. +

+

00704 {
+00705         char val[MAXBUF];
+00706         char t[MAXBUF];
+00707         char n[MAXBUF];
+00708         strlcpy(t,tag.c_str(),MAXBUF);
+00709         strlcpy(n,name.c_str(),MAXBUF);
+00710         int res = ReadConf(cache,t,n,index,val);
+00711         if (!res)
+00712         {
+00713                 this->error = CONF_VALUE_NOT_FOUND;
+00714                 return "";
+00715         }
+00716         return std::string(val);
+00717 }
 
@@ -651,13 +651,13 @@ Returns true if a config file is valid.

This method is partially implemented and will only return false if the config file does not exist or could not be opened.

-Definition at line 814 of file modules.cpp. +Definition at line 815 of file modules.cpp.

-References readerror. +References readerror.

-

00815 {
-00816         return this->readerror;
-00817 }
+
00816 {
+00817         return this->readerror;
+00818 }
 
@@ -685,9 +685,9 @@ The contents of the configuration file This protected member should never be acc

It will contain a pointer to the configuration file data with unneeded data (such as comments) stripped from it.

-Definition at line 788 of file modules.h. +Definition at line 798 of file modules.h.

-Referenced by ConfigReader(), Enumerate(), EnumerateValues(), ReadFlag(), ReadInteger(), ReadValue(), and ~ConfigReader(). +Referenced by ConfigReader(), Enumerate(), EnumerateValues(), ReadFlag(), ReadInteger(), ReadValue(), and ~ConfigReader().

@@ -711,9 +711,9 @@ Referenced by ConfigReader(

-Definition at line 793 of file modules.h. +Definition at line 803 of file modules.h.

-Referenced by ConfigReader(), GetError(), ReadFlag(), ReadInteger(), and ReadValue(). +Referenced by ConfigReader(), GetError(), ReadFlag(), ReadInteger(), and ReadValue().

@@ -737,9 +737,9 @@ Referenced by ConfigReader(

-Definition at line 789 of file modules.h. +Definition at line 799 of file modules.h.

-Referenced by ConfigReader(), DumpErrors(), and ~ConfigReader(). +Referenced by ConfigReader(), DumpErrors(), and ~ConfigReader().

@@ -765,14 +765,14 @@ Used to store errors.

-Definition at line 792 of file modules.h. +Definition at line 802 of file modules.h.

-Referenced by ConfigReader(), and Verify(). +Referenced by ConfigReader(), and Verify().


The documentation for this class was generated from the following files: -
Generated on Wed Apr 13 12:32:23 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:02 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classConnectClass-members.html b/docs/module-doc/classConnectClass-members.html index fde6d664e..67a6fc7eb 100644 --- a/docs/module-doc/classConnectClass-members.html +++ b/docs/module-doc/classConnectClass-members.html @@ -16,7 +16,7 @@ registration_timeoutConnectClass typeConnectClass ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:23 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:02 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classConnectClass.html b/docs/module-doc/classConnectClass.html index b2c89b4c6..22ced2f81 100644 --- a/docs/module-doc/classConnectClass.html +++ b/docs/module-doc/classConnectClass.html @@ -253,7 +253,7 @@ Definition at line 50 of fi
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:23 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:02 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classDNS-members.html b/docs/module-doc/classDNS-members.html index 39fbbd41a..c65070c21 100644 --- a/docs/module-doc/classDNS-members.html +++ b/docs/module-doc/classDNS-members.html @@ -34,7 +34,7 @@ SetNS(std::string dnsserver)DNS tDNS [private] ~DNS()DNS -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:03 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classDNS.html b/docs/module-doc/classDNS.html index 26dfe9f05..5e989b3c1 100644 --- a/docs/module-doc/classDNS.html +++ b/docs/module-doc/classDNS.html @@ -916,7 +916,7 @@ Definition at line 40 of file
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:03 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classELine-members.html b/docs/module-doc/classELine-members.html index df387c7cf..115372b7a 100644 --- a/docs/module-doc/classELine-members.html +++ b/docs/module-doc/classELine-members.html @@ -15,7 +15,7 @@ set_timeXLine sourceXLine ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classELine.html b/docs/module-doc/classELine.html index 285c773c8..fb1f5e8d1 100644 --- a/docs/module-doc/classELine.html +++ b/docs/module-doc/classELine.html @@ -45,7 +45,7 @@ Definition at line 88 of fi
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classExemptItem-members.html b/docs/module-doc/classExemptItem-members.html index 214ea6eaf..e9e633ed6 100644 --- a/docs/module-doc/classExemptItem-members.html +++ b/docs/module-doc/classExemptItem-members.html @@ -14,7 +14,7 @@ set_timeHostItem ~classbase()classbase [inline] ~HostItem()HostItem [inline, virtual] -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classExemptItem.html b/docs/module-doc/classExemptItem.html index 87569b817..b82a0e5eb 100644 --- a/docs/module-doc/classExemptItem.html +++ b/docs/module-doc/classExemptItem.html @@ -22,7 +22,7 @@ A subclass of HostItem designed to h

Definition at line 53 of file channels.h.


The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classExtMode-members.html b/docs/module-doc/classExtMode-members.html index 8f0f5e29f..43f83c522 100644 --- a/docs/module-doc/classExtMode-members.html +++ b/docs/module-doc/classExtMode-members.html @@ -16,7 +16,7 @@ params_when_onExtMode typeExtMode ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classExtMode.html b/docs/module-doc/classExtMode.html index 44bc54ad0..d21a80cf6 100644 --- a/docs/module-doc/classExtMode.html +++ b/docs/module-doc/classExtMode.html @@ -247,7 +247,7 @@ Referenced by ExtMode()
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classExtensible-members.html b/docs/module-doc/classExtensible-members.html index 8c60c700b..fb2a1aa55 100644 --- a/docs/module-doc/classExtensible-members.html +++ b/docs/module-doc/classExtensible-members.html @@ -13,7 +13,7 @@ GetExt(std::string key)Extensible Shrink(std::string key)Extensible ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classExtensible.html b/docs/module-doc/classExtensible.html index 7654a4ebb..8fcf2334e 100644 --- a/docs/module-doc/classExtensible.html +++ b/docs/module-doc/classExtensible.html @@ -170,7 +170,7 @@ Definition at line 54 of fil
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classFileReader-members.html b/docs/module-doc/classFileReader-members.html index 929a2cfc1..983b773c8 100644 --- a/docs/module-doc/classFileReader-members.html +++ b/docs/module-doc/classFileReader-members.html @@ -17,7 +17,7 @@ LoadFile(std::string filename)FileReader ~classbase()classbase [inline] ~FileReader()FileReader -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classFileReader.html b/docs/module-doc/classFileReader.html index c0055cc66..d966d1e3a 100644 --- a/docs/module-doc/classFileReader.html +++ b/docs/module-doc/classFileReader.html @@ -47,7 +47,7 @@ This class contains methods for read-only manipulation of a text file in memory.

-Definition at line 869 of file modules.h.


Constructor & Destructor Documentation

+Definition at line 879 of file modules.h.

Constructor & Destructor Documentation

@@ -77,10 +77,10 @@ Default constructor.

This method does not load any file into memory, you must use the LoadFile method after constructing the class this way.

-Definition at line 827 of file modules.cpp. +Definition at line 828 of file modules.cpp.

-

00828 {
-00829 }
+
00829 {
+00830 }
 
@@ -114,15 +114,15 @@ Secondary constructor.

This method initialises the class with a file loaded into it ready for GetLine and and other methods to be called. If the file could not be loaded, FileReader::FileSize returns 0.

-Definition at line 820 of file modules.cpp. +Definition at line 821 of file modules.cpp.

-References fc, and file_cache. +References fc, and file_cache.

-

00821 {
-00822         file_cache c;
-00823         readfile(c,filename.c_str());
-00824         this->fc = c;
-00825 }
+
00822 {
+00823         file_cache c;
+00824         readfile(c,filename.c_str());
+00825         this->fc = c;
+00826 }
 
@@ -155,10 +155,10 @@ Default destructor.

This deletes the memory allocated to the file.

-Definition at line 839 of file modules.cpp. +Definition at line 840 of file modules.cpp.

-

00840 {
-00841 }
+
00841 {
+00842 }
 
@@ -192,20 +192,20 @@ Returns true if the file exists This function will return false if the file coul

-Definition at line 843 of file modules.cpp. +Definition at line 844 of file modules.cpp.

-References fc. +References fc.

-

00844 {
-00845         if (fc.size() == 0)
-00846         {
-00847                 return(false);
-00848         }
-00849         else
-00850         {
-00851                 return(true);
-00852         }
-00853 }
+
00845 {
+00846         if (fc.size() == 0)
+00847         {
+00848                 return(false);
+00849         }
+00850         else
+00851         {
+00852                 return(true);
+00853         }
+00854 }
 
@@ -238,13 +238,13 @@ Returns the size of the file in lines.

This method returns the number of lines in the read file. If it is 0, no lines have been read into memory, either because the file is empty or it does not exist, or cannot be opened due to permission problems.

-Definition at line 862 of file modules.cpp. +Definition at line 863 of file modules.cpp.

-References fc. +References fc.

-

00863 {
-00864         return fc.size();
-00865 }
+
00864 {
+00865         return fc.size();
+00866 }
 
@@ -278,15 +278,15 @@ Retrieve one line from the file.

This method retrieves one line from the text file. If an empty non-NULL string is returned, the index was out of bounds, or the line had no data on it.

-Definition at line 855 of file modules.cpp. +Definition at line 856 of file modules.cpp.

-References fc. +References fc.

-

00856 {
-00857         if ((x<0) || (x>fc.size()))
-00858                 return "";
-00859         return fc[x];
-00860 }
+
00857 {
+00858         if ((x<0) || (x>fc.size()))
+00859                 return "";
+00860         return fc[x];
+00861 }
 
@@ -320,15 +320,15 @@ Used to load a file.

This method loads a file into the class ready for GetLine and and other methods to be called. If the file could not be loaded, FileReader::FileSize returns 0.

-Definition at line 831 of file modules.cpp. +Definition at line 832 of file modules.cpp.

-References fc, and file_cache. +References fc, and file_cache.

-

00832 {
-00833         file_cache c;
-00834         readfile(c,filename.c_str());
-00835         this->fc = c;
-00836 }
+
00833 {
+00834         file_cache c;
+00835         readfile(c,filename.c_str());
+00836         this->fc = c;
+00837 }
 
@@ -354,14 +354,14 @@ References fc, and

-Definition at line 871 of file modules.h. +Definition at line 881 of file modules.h.

-Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile(). +Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile().


The documentation for this class was generated from the following files: -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classGLine-members.html b/docs/module-doc/classGLine-members.html index d7010b3d5..972c24a0f 100644 --- a/docs/module-doc/classGLine-members.html +++ b/docs/module-doc/classGLine-members.html @@ -15,7 +15,7 @@ set_timeXLine sourceXLine ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classGLine.html b/docs/module-doc/classGLine.html index 12c8a3a74..f43a0cd3b 100644 --- a/docs/module-doc/classGLine.html +++ b/docs/module-doc/classGLine.html @@ -53,7 +53,7 @@ Definition at line 79 of fi
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classHostItem-members.html b/docs/module-doc/classHostItem-members.html index d80951e54..680ce0eed 100644 --- a/docs/module-doc/classHostItem-members.html +++ b/docs/module-doc/classHostItem-members.html @@ -14,7 +14,7 @@ set_timeHostItem ~classbase()classbase [inline] ~HostItem()HostItem [inline, virtual] -
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classHostItem.html b/docs/module-doc/classHostItem.html index 1f8c0ce5b..ccd23eb8e 100644 --- a/docs/module-doc/classHostItem.html +++ b/docs/module-doc/classHostItem.html @@ -178,7 +178,7 @@ Definition at line 32 of
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classInviteItem-members.html b/docs/module-doc/classInviteItem-members.html index 0e1ec1f72..9df94a8df 100644 --- a/docs/module-doc/classInviteItem-members.html +++ b/docs/module-doc/classInviteItem-members.html @@ -14,7 +14,7 @@ set_timeHostItem ~classbase()classbase [inline] ~HostItem()HostItem [inline, virtual] -
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classInviteItem.html b/docs/module-doc/classInviteItem.html index c0b264624..1e143532a 100644 --- a/docs/module-doc/classInviteItem.html +++ b/docs/module-doc/classInviteItem.html @@ -22,7 +22,7 @@ A subclass of HostItem designed to h

Definition at line 61 of file channels.h.


The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classInvited-members.html b/docs/module-doc/classInvited-members.html index a49a0a5a7..f1f46fa52 100644 --- a/docs/module-doc/classInvited-members.html +++ b/docs/module-doc/classInvited-members.html @@ -10,7 +10,7 @@ channelInvited classbase()classbase [inline] ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classInvited.html b/docs/module-doc/classInvited.html index ce6ab54ad..4db5c69c6 100644 --- a/docs/module-doc/classInvited.html +++ b/docs/module-doc/classInvited.html @@ -52,7 +52,7 @@ Referenced by userrec::Invite
The documentation for this class was generated from the following file:
-
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classKLine-members.html b/docs/module-doc/classKLine-members.html index d75fb3e2b..8cc7289bd 100644 --- a/docs/module-doc/classKLine-members.html +++ b/docs/module-doc/classKLine-members.html @@ -15,7 +15,7 @@ set_timeXLine sourceXLine ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:05 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classKLine.html b/docs/module-doc/classKLine.html index 202a2c541..2f2388f53 100644 --- a/docs/module-doc/classKLine.html +++ b/docs/module-doc/classKLine.html @@ -53,7 +53,7 @@ Definition at line 68 of fi
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:05 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classModeParameter-members.html b/docs/module-doc/classModeParameter-members.html index 77156ab94..041f4e35e 100644 --- a/docs/module-doc/classModeParameter-members.html +++ b/docs/module-doc/classModeParameter-members.html @@ -12,7 +12,7 @@ modeModeParameter parameterModeParameter ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:05 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classModeParameter.html b/docs/module-doc/classModeParameter.html index 74c1bd353..eb42e3972 100644 --- a/docs/module-doc/classModeParameter.html +++ b/docs/module-doc/classModeParameter.html @@ -110,7 +110,7 @@ Referenced by chanrec::Set
The documentation for this class was generated from the following file:
-
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:05 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classModule-members.html b/docs/module-doc/classModule-members.html index 9face5200..ac84cbfa3 100644 --- a/docs/module-doc/classModule-members.html +++ b/docs/module-doc/classModule-members.html @@ -22,6 +22,7 @@ OnPacketReceive(std::string &data, std::string serv)Module [virtual] OnPacketTransmit(std::string &data, std::string serv)Module [virtual] OnRehash()Module [virtual] + OnSendList(userrec *user, chanrec *channel, char mode)Module [virtual] OnServerRaw(std::string &raw, bool inbound, userrec *user)Module [virtual] OnUserConnect(userrec *user)Module [virtual] OnUserJoin(userrec *user, chanrec *channel)Module [virtual] @@ -37,7 +38,7 @@ OnWhois(userrec *source, userrec *dest)Module [virtual] ~classbase()classbase [inline] ~Module()Module [virtual] -
Generated on Wed Apr 13 12:32:26 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:06 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classModule.html b/docs/module-doc/classModule.html index a0e01fb1e..c861d87d2 100644 --- a/docs/module-doc/classModule.html +++ b/docs/module-doc/classModule.html @@ -99,6 +99,9 @@ Inherits classbase. virtual void OnBackgroundTimer (time_t curtime)  Called once every five seconds for background processing.

+virtual void OnSendList (userrec *user, chanrec *channel, char mode) + + Called whenever a list is needed for a listmode.



Detailed Description

Base class for all InspIRCd modules This class is the base class for InspIRCd modules. @@ -760,6 +763,57 @@ Definition at line 314
+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
void Module::OnSendList userrec user,
chanrec channel,
char  mode
[virtual]
+
+ + + + + +
+   + + +

+Called whenever a list is needed for a listmode. +

+For example, when a /MODE #channel +b (without any other parameters) is called, if a module was handling +b this function would be called. The function can then output any lists it wishes to. Please note that all modules will see all mode characters to provide the ability to extend each other, so please only output a list if the mode character given matches the one(s) you want to handle. +

+Definition at line 334 of file modules.cpp. +

+

00334 { };
+

@@ -1366,7 +1420,7 @@ Definition at line 321


The documentation for this class was generated from the following files: -
Generated on Wed Apr 13 12:32:26 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:06 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classModuleFactory-members.html b/docs/module-doc/classModuleFactory-members.html index 5735bfe40..aeac803fd 100644 --- a/docs/module-doc/classModuleFactory-members.html +++ b/docs/module-doc/classModuleFactory-members.html @@ -12,7 +12,7 @@ ModuleFactory()ModuleFactory [inline] ~classbase()classbase [inline] ~ModuleFactory()ModuleFactory [inline, virtual] -
Generated on Wed Apr 13 12:32:26 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:07 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classModuleFactory.html b/docs/module-doc/classModuleFactory.html index 30f3bb5bd..7267d125c 100644 --- a/docs/module-doc/classModuleFactory.html +++ b/docs/module-doc/classModuleFactory.html @@ -30,7 +30,7 @@ This is to allow for modules to create many different variants of

-Definition at line 924 of file modules.h.


Constructor & Destructor Documentation

+Definition at line 934 of file modules.h.

Constructor & Destructor Documentation

@@ -58,9 +58,9 @@ Definition at line 924 of

-Definition at line 927 of file modules.h. +Definition at line 937 of file modules.h.

-

00927 { }
+
00937 { }
 
@@ -91,9 +91,9 @@ Definition at line 927 of

-Definition at line 928 of file modules.h. +Definition at line 938 of file modules.h.

-

00928 { }
+
00938 { }
 
@@ -130,7 +130,7 @@ Your inherited class of ModuleFactory must return a pointer to your modules.h -
Generated on Wed Apr 13 12:32:26 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:07 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classQLine-members.html b/docs/module-doc/classQLine-members.html index 446cb8a35..018f91543 100644 --- a/docs/module-doc/classQLine-members.html +++ b/docs/module-doc/classQLine-members.html @@ -16,7 +16,7 @@ set_timeXLine sourceXLine ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:26 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:07 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classQLine.html b/docs/module-doc/classQLine.html index 0ae4535b1..29091ab9b 100644 --- a/docs/module-doc/classQLine.html +++ b/docs/module-doc/classQLine.html @@ -82,7 +82,7 @@ Definition at line 114 of f
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:26 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:07 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classServer-members.html b/docs/module-doc/classServer-members.html index c633a1848..36ff9a776 100644 --- a/docs/module-doc/classServer-members.html +++ b/docs/module-doc/classServer-members.html @@ -58,7 +58,7 @@ UserToPseudo(userrec *user, std::string message)Server [virtual] ~classbase()classbase [inline] ~Server()Server [virtual] -
Generated on Wed Apr 13 12:32:29 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:09 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classServer.html b/docs/module-doc/classServer.html index afa949803..f3ce7e7ae 100644 --- a/docs/module-doc/classServer.html +++ b/docs/module-doc/classServer.html @@ -170,7 +170,7 @@ All modules should instantiate at least one copy of this class, and use its memb

-Definition at line 385 of file modules.h.


Constructor & Destructor Documentation

+Definition at line 395 of file modules.h.

Constructor & Destructor Documentation

@@ -200,10 +200,10 @@ Default constructor.

Creates a Server object.

-Definition at line 339 of file modules.cpp. +Definition at line 340 of file modules.cpp.

-

00340 {
-00341 }
+
00341 {
+00342 }
 
@@ -236,10 +236,10 @@ Default destructor.

Destroys a Server object.

-Definition at line 343 of file modules.cpp. +Definition at line 344 of file modules.cpp.

-

00344 {
-00345 }
+
00345 {
+00346 }
 
@@ -303,13 +303,13 @@ This allows modules to add extra commands into the command table. You must place typedef void (handlerfunc) (char**, int, userrec*); ... void handle_kill(char **parameters, int pcnt, userrec *user)

When the command is typed, the parameters will be placed into the parameters array (similar to argv) and the parameter count will be placed into pcnt (similar to argv). There will never be any less parameters than the 'minparams' value you specified when creating the command. The *user parameter is the class of the user which caused the command to trigger, who will always have the flag you specified in 'flags' when creating the initial command. For example to create an oper only command create the commands with flags='o'. The source parameter is used for resource tracking, and should contain the name of your module (with file extension) e.g. "m_blarp.so". If you place the wrong identifier here, you can cause crashes if your module is unloaded.

-Definition at line 420 of file modules.cpp. +Definition at line 421 of file modules.cpp.

References createcommand().

-

00421 {
-00422         createcommand(cmd,f,flags,minparams,source);
-00423 }
+
00422 {
+00423         createcommand(cmd,f,flags,minparams,source);
+00424 }
 
@@ -364,13 +364,13 @@ Adds a E-line The E-line is enforced as soon as it is added.

The duration must be in seconds, however you can use the Server::CalcDuration method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name.

-Definition at line 638 of file modules.cpp. +Definition at line 639 of file modules.cpp.

References add_eline(), and duration().

-

00639 {
-00640         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
-00641 }
+
00640 {
+00641         add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
+00642 }
 
@@ -409,16 +409,16 @@ This call is used to implement modes like +q and +a. The characteristics of thes (4) The mode and its parameter are NOT stored in the channels modes structure

It is down to the module handling the mode to maintain state and determine what 'items' (e.g. users, or a banlist) have the mode set on them, and process the modes at the correct times, e.g. during access checks on channels, etc. When the extended mode is triggered the OnExtendedMode method will be triggered as above. Note that the target you are given will be a channel, if for example your mode is set 'on a user' (in for example +a) you must use Server::Find to locate the user the mode is operating on. Your mode handler may return 1 to handle the mode AND tell the core to display the mode change, e.g. '+aaa one two three' in the case of the mode for 'two', or it may return -1 to 'eat' the mode change, so the above example would become '+aa one three' after processing.

-Definition at line 565 of file modules.cpp. +Definition at line 566 of file modules.cpp.

References DoAddExtendedMode(), ModeMakeList(), and MT_CHANNEL.

-

00566 {
-00567         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
-00568         if (res)
-00569                 ModeMakeList(modechar);
-00570         return res;
-00571 }
+
00567 {
+00568         bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1);
+00569         if (res)
+00570                 ModeMakeList(modechar);
+00571         return res;
+00572 }
 
@@ -479,28 +479,28 @@ Adds an extended mode letter which is parsed by a module.

This allows modules to add extra mode letters, e.g. +x for hostcloak. the "type" parameter is either MT_CHANNEL, MT_CLIENT, or MT_SERVER, to indicate wether the mode is a channel mode, a client mode, or a server mode. requires_oper is used with MT_CLIENT type modes only to indicate the mode can only be set or unset by an oper. If this is used for MT_CHANNEL type modes it is ignored. params_when_on is the number of modes to expect when the mode is turned on (for type MT_CHANNEL only), e.g. with mode +k, this would have a value of 1. the params_when_off value has a similar value to params_when_on, except it indicates the number of parameters to expect when the mode is disabled. Modes which act in a similar way to channel mode +l (e.g. require a parameter to enable, but not to disable) should use this parameter. The function returns false if the mode is unavailable, and will not attempt to allocate another character, as this will confuse users. This also means that as only one module can claim a specific mode character, the core does not need to keep track of which modules own which modes, which speeds up operation of the server. In this version, a mode can have at most one parameter, attempting to use more parameters will have undefined effects.

-Definition at line 545 of file modules.cpp. +Definition at line 546 of file modules.cpp.

References DEBUG, DoAddExtendedMode(), MT_CLIENT, and MT_SERVER.

-

00546 {
-00547         if (type == MT_SERVER)
-00548         {
-00549                 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
-00550                 return false;
-00551         }
-00552         if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
-00553         {
-00554                 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
-00555                 return false;
-00556         }
-00557         if ((params_when_on>1) || (params_when_off>1))
-00558         {
-00559                 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
-00560                 return false;
-00561         }
-00562         return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
-00563 }
+
00547 {
+00548         if (type == MT_SERVER)
+00549         {
+00550                 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion");
+00551                 return false;
+00552         }
+00553         if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT))
+00554         {
+00555                 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported");
+00556                 return false;
+00557         }
+00558         if ((params_when_on>1) || (params_when_off>1))
+00559         {
+00560                 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported");
+00561                 return false;
+00562         }
+00563         return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off);
+00564 }
 
@@ -555,13 +555,13 @@ Adds a G-line The G-line is propogated to all of the servers in the mesh and enf

The duration must be in seconds, however you can use the Server::CalcDuration method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name.

-Definition at line 618 of file modules.cpp. +Definition at line 619 of file modules.cpp.

References add_gline(), and duration().

-

00619 {
-00620         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
-00621 }
+
00620 {
+00621         add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
+00622 }
 
@@ -616,13 +616,13 @@ Adds a K-line The K-line is enforced as soon as it is added.

The duration must be in seconds, however you can use the Server::CalcDuration method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name.

-Definition at line 633 of file modules.cpp. +Definition at line 634 of file modules.cpp.

References add_kline(), and duration().

-

00634 {
-00635         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
-00636 }
+
00635 {
+00636         add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str());
+00637 }
 
@@ -677,13 +677,13 @@ Adds a Q-line The Q-line is propogated to all of the servers in the mesh and enf

The duration must be in seconds, however you can use the Server::CalcDuration method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name.

-Definition at line 623 of file modules.cpp. +Definition at line 624 of file modules.cpp.

References add_qline(), and duration().

-

00624 {
-00625         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
-00626 }
+
00625 {
+00626         add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str());
+00627 }
 
@@ -738,13 +738,13 @@ Adds a Z-line The Z-line is propogated to all of the servers in the mesh and enf

The duration must be in seconds, however you can use the Server::CalcDuration method to convert durations into the 1w2d3h3m6s format used by /GLINE etc. The source is an arbitary string used to indicate who or what sent the data, usually this is the nickname of a person, or a server name.

-Definition at line 628 of file modules.cpp. +Definition at line 629 of file modules.cpp.

References add_zline(), and duration().

-

00629 {
-00630         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
-00631 }
+
00630 {
+00631         add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str());
+00632 }
 
@@ -778,13 +778,13 @@ Calculates a duration This method will take a string containing a formatted dura

"1w2d") and return its value as a total number of seconds. This is the same function used internally by /GLINE etc to set the ban times.

-Definition at line 668 of file modules.cpp. +Definition at line 669 of file modules.cpp.

References duration().

-

00669 {
-00670         return duration(delta.c_str());
-00671 }
+
00670 {
+00671         return duration(delta.c_str());
+00672 }
 
@@ -840,11 +840,11 @@ Calls the handler for a command, either implemented by the core or by another mo You can use this function to trigger other commands in the ircd, such as PRIVMSG, JOIN, KICK etc, or even as a method of callback. By defining command names that are untypeable for users on irc (e.g. those which contain a or
) you may use them as callback identifiers. The first parameter to this method is the name of the command handler you wish to call, e.g. PRIVMSG. This will be a command handler previously registered by the core or wih AddCommand(). The second parameter is an array of parameters, and the third parameter is a count of parameters in the array. If you do not pass enough parameters to meet the minimum needed by the handler, the functiom will silently ignore it. The final parameter is the user executing the command handler, used for privilage checks, etc.

-Definition at line 410 of file modules.cpp. +Definition at line 411 of file modules.cpp.

-

00411 {
-00412         call_handler(commandname.c_str(),parameters,pcnt,user);
-00413 }
+
00412 {
+00413         call_handler(commandname.c_str(),parameters,pcnt,user);
+00414 }
 
@@ -887,13 +887,13 @@ Change GECOS (fullname) of a user.

You should always call this method to change a user's GECOS rather than writing directly to the fullname member of userrec, as any change applied via this method will be propogated to any linked servers.

-Definition at line 498 of file modules.cpp. +Definition at line 499 of file modules.cpp.

References ChangeName().

-

00499 {
-00500         ChangeName(user,gecos.c_str());
-00501 }
+
00500 {
+00501         ChangeName(user,gecos.c_str());
+00502 }
 
@@ -936,13 +936,13 @@ Change displayed hostname of a user.

You should always call this method to change a user's host rather than writing directly to the dhost member of userrec, as any change applied via this method will be propogated to any linked servers.

-Definition at line 493 of file modules.cpp. +Definition at line 494 of file modules.cpp.

References ChangeDisplayedHost().

-

00494 {
-00495         ChangeDisplayedHost(user,host.c_str());
-00496 }
+
00495 {
+00496         ChangeDisplayedHost(user,host.c_str());
+00497 }
 
@@ -985,11 +985,11 @@ Forces a user nickchange.

This command works similarly to SVSNICK, and can be used to implement Q-lines etc. If you specify an invalid nickname, the nick change will be dropped and the target user will receive the error numeric for it.

-Definition at line 394 of file modules.cpp. +Definition at line 395 of file modules.cpp.

-

00395 {
-00396         force_nickchange(user,nickname.c_str());
-00397 }
+
00396 {
+00397         force_nickchange(user,nickname.c_str());
+00398 }
 
@@ -1032,13 +1032,13 @@ Attempts to look up a user's privilages on a channel.

This function will return a string containing either @, , +, or an empty string, representing the user's privilages upon the channel you specify.

-Definition at line 518 of file modules.cpp. +Definition at line 519 of file modules.cpp.

References cmode().

-

00519 {
-00520         return cmode(User,Chan);
-00521 }
+
00520 {
+00521         return cmode(User,Chan);
+00522 }
 
@@ -1081,13 +1081,13 @@ Returns true if two users share a common channel.

This method is used internally by the NICK and QUIT commands, and the Server::SendCommon method.

-Definition at line 471 of file modules.cpp. +Definition at line 472 of file modules.cpp.

References common_channels().

-

00472 {
-00473         return (common_channels(u1,u2) != 0);
-00474 }
+
00473 {
+00474         return (common_channels(u1,u2) != 0);
+00475 }
 
@@ -1121,11 +1121,11 @@ Returns a count of the number of users on a channel.

This will NEVER be 0, as if the chanrec exists, it will have at least one user in the channel.

-Definition at line 573 of file modules.cpp. +Definition at line 574 of file modules.cpp.

-

00574 {
-00575         return usercount(c);
-00576 }
+
00575 {
+00576         return usercount(c);
+00577 }
 
@@ -1159,13 +1159,13 @@ Deletes a local E-Line.

-Definition at line 663 of file modules.cpp. +Definition at line 664 of file modules.cpp.

References del_eline().

-

00664 {
-00665         del_eline(hostmask.c_str());
-00666 }
+
00665 {
+00666         del_eline(hostmask.c_str());
+00667 }
 
@@ -1199,13 +1199,13 @@ Deletes a G-Line from all servers on the mesh.

-Definition at line 643 of file modules.cpp. +Definition at line 644 of file modules.cpp.

References del_gline().

-

00644 {
-00645         del_gline(hostmask.c_str());
-00646 }
+
00645 {
+00646         del_gline(hostmask.c_str());
+00647 }
 
@@ -1239,13 +1239,13 @@ Deletes a local K-Line.

-Definition at line 658 of file modules.cpp. +Definition at line 659 of file modules.cpp.

References del_kline().

-

00659 {
-00660         del_kline(hostmask.c_str());
-00661 }
+
00660 {
+00661         del_kline(hostmask.c_str());
+00662 }
 
@@ -1279,13 +1279,13 @@ Deletes a Q-Line from all servers on the mesh.

-Definition at line 648 of file modules.cpp. +Definition at line 649 of file modules.cpp.

References del_qline().

-

00649 {
-00650         del_qline(nickname.c_str());
-00651 }
+
00650 {
+00651         del_qline(nickname.c_str());
+00652 }
 
@@ -1319,13 +1319,13 @@ Deletes a Z-Line from all servers on the mesh.

-Definition at line 653 of file modules.cpp. +Definition at line 654 of file modules.cpp.

References del_zline().

-

00654 {
-00655         del_zline(ipaddr.c_str());
-00656 }
+
00655 {
+00656         del_zline(ipaddr.c_str());
+00657 }
 
@@ -1359,11 +1359,11 @@ Attempts to look up a channel and return a pointer to it.

This function will return NULL if the channel does not exist.

-Definition at line 513 of file modules.cpp. +Definition at line 514 of file modules.cpp.

-

00514 {
-00515         return FindChan(channel.c_str());
-00516 }
+
00515 {
+00516         return FindChan(channel.c_str());
+00517 }
 
@@ -1397,11 +1397,11 @@ Attempts to look up a nick and return a pointer to it.

This function will return NULL if the nick does not exist.

-Definition at line 508 of file modules.cpp. +Definition at line 509 of file modules.cpp.

-

00509 {
-00510         return Find(nick);
-00511 }
+
00510 {
+00511         return Find(nick);
+00512 }
 
@@ -1434,11 +1434,11 @@ Returns the information of the server as returned by the /ADMIN command.

See the Admin class for further information of the return value. The members Admin::Nick, Admin::Email and Admin::Name contain the information for the server where the module is loaded.

-Definition at line 538 of file modules.cpp. +Definition at line 539 of file modules.cpp.

-

00539 {
-00540         return Admin(getadminname(),getadminemail(),getadminnick());
-00541 }
+
00540 {
+00541         return Admin(getadminname(),getadminemail(),getadminnick());
+00542 }
 
@@ -1471,11 +1471,11 @@ Returns the network name, global to all linked servers.

-Definition at line 533 of file modules.cpp. +Definition at line 534 of file modules.cpp.

-

00534 {
-00535         return getnetworkname();
-00536 }
+
00535 {
+00536         return getnetworkname();
+00537 }
 
@@ -1508,11 +1508,11 @@ Returns the server name of the server where the module is loaded.

-Definition at line 528 of file modules.cpp. +Definition at line 529 of file modules.cpp.

-

00529 {
-00530         return getservername();
-00531 }
+
00530 {
+00531         return getservername();
+00532 }
 
@@ -1546,28 +1546,28 @@ Fetches the userlist of a channel.

This function must be here and not a member of userrec or chanrec due to include constraints.

-Definition at line 375 of file modules.cpp. +Definition at line 376 of file modules.cpp.

References chanuserlist, clientlist, has_channel(), and isnick().

-

00376 {
-00377         chanuserlist userl;
-00378         userl.clear();
-00379         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
-00380         {
-00381                 if (i->second)
-00382                 {
-00383                         if (has_channel(i->second,chan))
-00384                         {
-00385                                 if (isnick(i->second->nick))
-00386                                 {
-00387                                         userl.push_back(i->second);
-00388                                 }
-00389                         }
-00390                 }
-00391         }
-00392         return userl;
-00393 }
+
00377 {
+00378         chanuserlist userl;
+00379         userl.clear();
+00380         for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++)
+00381         {
+00382                 if (i->second)
+00383                 {
+00384                         if (has_channel(i->second,chan))
+00385                         {
+00386                                 if (isnick(i->second->nick))
+00387                                 {
+00388                                         userl.push_back(i->second);
+00389                                 }
+00390                         }
+00391                 }
+00392         }
+00393         return userl;
+00394 }
 
@@ -1601,13 +1601,13 @@ Returns true if a nick is valid.

Nicks for unregistered connections will return false.

-Definition at line 503 of file modules.cpp. +Definition at line 504 of file modules.cpp.

References isnick().

-

00504 {
-00505         return (isnick(nick.c_str()) != 0);
-00506 }
+
00505 {
+00506         return (isnick(nick.c_str()) != 0);
+00507 }
 
@@ -1650,13 +1650,13 @@ Checks if a user is on a channel.

This function will return true or false to indicate if user 'User' is on channel 'Chan'.

-Definition at line 523 of file modules.cpp. +Definition at line 524 of file modules.cpp.

References has_channel().

-

00524 {
-00525         return has_channel(User,Chan);
-00526 }
+
00525 {
+00526         return has_channel(User,Chan);
+00527 }
 
@@ -1690,13 +1690,13 @@ Returns true if the servername you give is ulined.

ULined servers have extra privilages. They are allowed to change nicknames on remote servers, change modes of clients which are on remote servers and set modes of channels where there are no channel operators for that channel on the ulined server, amongst other things. Ulined server data is also broadcast across the mesh at all times as opposed to selectively messaged in the case of normal servers, as many ulined server types (such as services) do not support meshed links and must operate in this manner.

-Definition at line 405 of file modules.cpp. +Definition at line 406 of file modules.cpp.

References is_uline().

-

00406 {
-00407         return is_uline(server.c_str());
-00408 }
+
00407 {
+00408         return is_uline(server.c_str());
+00409 }
 
@@ -1745,11 +1745,11 @@ Forces a user to join a channel.

This is similar to svsjoin and can be used to implement redirection, etc. On success, the return value is a valid pointer to a chanrec* of the channel the user was joined to. On failure, the result is NULL.

-Definition at line 365 of file modules.cpp. +Definition at line 366 of file modules.cpp.

-

00366 {
-00367         return add_channel(user,cname.c_str(),key.c_str(),true);
-00368 }
+
00367 {
+00368         return add_channel(user,cname.c_str(),key.c_str(),true);
+00369 }
 
@@ -1792,11 +1792,11 @@ Writes a log string.

This method writes a line of text to the log. If the level given is lower than the level given in the configuration, this command has no effect.

-Definition at line 415 of file modules.cpp. +Definition at line 416 of file modules.cpp.

-

00416 {
-00417         log(level,"%s",s.c_str());
-00418 }
+
00417 {
+00418         log(level,"%s",s.c_str());
+00419 }
 
@@ -1839,14 +1839,14 @@ Matches text against a glob pattern.

Uses the ircd's internal matching function to match string against a globbing pattern, e.g. *!*@*.com Returns true if the literal successfully matches the pattern, false if otherwise.

-Definition at line 352 of file modules.cpp. +Definition at line 353 of file modules.cpp.

-

00353 {
-00354         char literal[MAXBUF],pattern[MAXBUF];
-00355         strlcpy(literal,sliteral.c_str(),MAXBUF);
-00356         strlcpy(pattern,spattern.c_str(),MAXBUF);
-00357         return match(literal,pattern);
-00358 }
+
00354 {
+00355         char literal[MAXBUF],pattern[MAXBUF];
+00356         strlcpy(literal,sliteral.c_str(),MAXBUF);
+00357         strlcpy(pattern,spattern.c_str(),MAXBUF);
+00358         return match(literal,pattern);
+00359 }
 
@@ -1895,11 +1895,11 @@ Forces a user to part a channel.

This is similar to svspart and can be used to implement redirection, etc. Although the return value of this function is a pointer to a channel record, the returned data is undefined and should not be read or written to. This behaviour may be changed in a future version.

-Definition at line 370 of file modules.cpp. +Definition at line 371 of file modules.cpp.

-

00371 {
-00372         return del_channel(user,cname.c_str(),reason.c_str(),false);
-00373 }
+
00372 {
+00373         return del_channel(user,cname.c_str(),reason.c_str(),false);
+00374 }
 
@@ -1948,38 +1948,38 @@ This user takes one user, and switches their file descriptor with another user,

The user in 'alive' is booted off the server with the given message. The user referred to by 'zombie' should have previously been locked with Server::ZombifyUser, otherwise stale sockets and file descriptor leaks can occur. After this call, the pointer to alive will be invalid, and the pointer to zombie will be equivalent in effect to the old pointer to alive.

-Definition at line 588 of file modules.cpp. +Definition at line 589 of file modules.cpp.

References ucrec::channel, userrec::chans, chanrec::created, connection::fd, FD_MAGIC_NUMBER, connection::host, userrec::ident, chanrec::name, userrec::nick, chanrec::setby, chanrec::topic, and chanrec::topicset.

-

00589 {
-00590         zombie->fd = alive->fd;
-00591         alive->fd = FD_MAGIC_NUMBER;
-00592         Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick);
-00593         kill_link(alive,message.c_str());
-00594         for (int i = 0; i != MAXCHANS; i++)
-00595         {
-00596                 if (zombie->chans[i].channel != NULL)
-00597                 {
-00598                         if (zombie->chans[i].channel->name)
-00599                         {
-00600                                 chanrec* Ptr = zombie->chans[i].channel;
-00601                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
-00602                                 if (Ptr->topicset)
-00603                                 {
-00604                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
-00605                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
-00606                                 }
-00607                                 userlist(zombie,Ptr);
-00608                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
-00609                                 WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr));
-00610                                 WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created);
-00611 
-00612                         }
-00613                 }
-00614         }
-00615 
-00616 }
+
00590 {
+00591         zombie->fd = alive->fd;
+00592         alive->fd = FD_MAGIC_NUMBER;
+00593         Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick);
+00594         kill_link(alive,message.c_str());
+00595         for (int i = 0; i != MAXCHANS; i++)
+00596         {
+00597                 if (zombie->chans[i].channel != NULL)
+00598                 {
+00599                         if (zombie->chans[i].channel->name)
+00600                         {
+00601                                 chanrec* Ptr = zombie->chans[i].channel;
+00602                                 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name);
+00603                                 if (Ptr->topicset)
+00604                                 {
+00605                                         WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic);
+00606                                         WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset);
+00607                                 }
+00608                                 userlist(zombie,Ptr);
+00609                                 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name);
+00610                                 WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr));
+00611                                 WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created);
+00612 
+00613                         }
+00614                 }
+00615         }
+00616 
+00617 }
 
@@ -2024,14 +2024,14 @@ To the user, it will appear as if they typed /QUIT themselves, except for the fa WARNING!

Once you call this function, userrec* user will immediately become INVALID. You MUST NOT write to, or read from this pointer after calling the QuitUser method UNDER ANY CIRCUMSTANCES! The best course of action after calling this method is to immediately bail from your handler.

-Definition at line 399 of file modules.cpp. +Definition at line 400 of file modules.cpp.

References userrec::nick, and send_network_quit().

-

00400 {
-00401         send_network_quit(user->nick,reason.c_str());
-00402         kill_link(user,reason.c_str());
-00403 }
+
00401 {
+00402         send_network_quit(user->nick,reason.c_str());
+00403         kill_link(user,reason.c_str());
+00404 }
 
@@ -2074,11 +2074,11 @@ Sends a line of text down a TCP/IP socket.

This method writes a line of text to an established socket, cutting it to 510 characters plus a carriage return and linefeed if required.

-Definition at line 430 of file modules.cpp. +Definition at line 431 of file modules.cpp.

-

00431 {
-00432         Write(Socket,"%s",s.c_str());
-00433 }
+
00432 {
+00433         Write(Socket,"%s",s.c_str());
+00434 }
 
@@ -2133,18 +2133,18 @@ Sends text from a user to a channel (mulicast).

This method writes a line of text to a channel, with the given user's nick/ident /host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in MODE (see RFC 1459).

-Definition at line 459 of file modules.cpp. -

-

00460 {
-00461         if (IncludeSender)
-00462         {
-00463                 WriteChannel(Channel,User,"%s",s.c_str());
-00464         }
-00465         else
-00466         {
-00467                 ChanExceptSender(Channel,User,"%s",s.c_str());
-00468         }
-00469 }
+Definition at line 460 of file modules.cpp.
+

+

00461 {
+00462         if (IncludeSender)
+00463         {
+00464                 WriteChannel(Channel,User,"%s",s.c_str());
+00465         }
+00466         else
+00467         {
+00468                 ChanExceptSender(Channel,User,"%s",s.c_str());
+00469         }
+00470 }
 
@@ -2193,18 +2193,18 @@ Sends text from a user to one or more channels (mulicast).

This method writes a line of text to all users which share a common channel with a given user, with the user's nick/ident/host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent back to the user from which it originated, as seen in NICK (see RFC 1459). Otherwise, it is only sent to the other recipients, as seen in QUIT.

-Definition at line 476 of file modules.cpp. -

-

00477 {
-00478         if (IncludeSender)
-00479         {
-00480                 WriteCommon(User,"%s",text.c_str());
-00481         }
-00482         else
-00483         {
-00484                 WriteCommonExcept(User,"%s",text.c_str());
-00485         }
-00486 }
+Definition at line 477 of file modules.cpp.
+

+

00478 {
+00479         if (IncludeSender)
+00480         {
+00481                 WriteCommon(User,"%s",text.c_str());
+00482         }
+00483         else
+00484         {
+00485                 WriteCommonExcept(User,"%s",text.c_str());
+00486         }
+00487 }
 
@@ -2253,11 +2253,11 @@ Sends text from a user to a socket.

This method writes a line of text to an established socket, with the given user's nick/ident /host combination prepended, as used in PRIVSG etc commands (see RFC 1459)

-Definition at line 440 of file modules.cpp. +Definition at line 441 of file modules.cpp.

-

00441 {
-00442         WriteFrom(Socket,User,"%s",s.c_str());
-00443 }
+
00442 {
+00443         WriteFrom(Socket,User,"%s",s.c_str());
+00444 }
 
@@ -2313,13 +2313,13 @@ modes[2] = user->nick;

Srv->SendMode(modes,3,user);

The modes will originate from the server where the command was issued, however responses (e.g. numerics) will be sent to the user you provide as the third parameter. You must be sure to get the number of parameters correct in the pcnt parameter otherwise you could leave your server in an unstable state!

-Definition at line 425 of file modules.cpp. +Definition at line 426 of file modules.cpp.

References server_mode().

-

00426 {
-00427         server_mode(parameters,pcnt,user);
-00428 }
+
00427 {
+00428         server_mode(parameters,pcnt,user);
+00429 }
 
@@ -2353,11 +2353,11 @@ Sends text to all opers.

This method sends a server notice to all opers with the usermode +s.

-Definition at line 347 of file modules.cpp. +Definition at line 348 of file modules.cpp.

-

00348 {
-00349         WriteOpers("%s",s.c_str());
-00350 }
+
00349 {
+00350         WriteOpers("%s",s.c_str());
+00351 }
 
@@ -2400,11 +2400,11 @@ Sends text from the server to a socket.

This method writes a line of text to an established socket, with the servername prepended as used by numerics (see RFC 1459)

-Definition at line 435 of file modules.cpp. +Definition at line 436 of file modules.cpp.

-

00436 {
-00437         WriteServ(Socket,"%s",s.c_str());
-00438 }
+
00437 {
+00438         WriteServ(Socket,"%s",s.c_str());
+00439 }
 
@@ -2457,22 +2457,22 @@ The format will become:

:localserver TEXT

Which is useful for numerics and server notices to single users, etc.

-Definition at line 445 of file modules.cpp. +Definition at line 446 of file modules.cpp.

References connection::fd.

-

00446 {
-00447         if (!Source)
-00448         {
-00449                 // if source is NULL, then the message originates from the local server
-00450                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
-00451         }
-00452         else
-00453         {
-00454                 // otherwise it comes from the user specified
-00455                 WriteTo(Source,Dest,"%s",s.c_str());
-00456         }
-00457 }
+
00447 {
+00448         if (!Source)
+00449         {
+00450                 // if source is NULL, then the message originates from the local server
+00451                 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str());
+00452         }
+00453         else
+00454         {
+00455                 // otherwise it comes from the user specified
+00456                 WriteTo(Source,Dest,"%s",s.c_str());
+00457         }
+00458 }
 
@@ -2523,11 +2523,11 @@ These can be RFC specified modes such as +i, or module provided modes, including Serv->SendToModeMask("xi", WM_OR, "m00");

Then the text 'm00' will be sent to all users with EITHER mode x or i. Conversely if you used WM_AND, the user must have both modes set to receive the message.

-Definition at line 360 of file modules.cpp. +Definition at line 361 of file modules.cpp.

-

00361 {
-00362         WriteMode(modes.c_str(),flags,"%s",text.c_str());
-00363 }
+
00362 {
+00363         WriteMode(modes.c_str(),flags,"%s",text.c_str());
+00364 }
 
@@ -2570,11 +2570,11 @@ Sends a WALLOPS message.

This method writes a WALLOPS message to all users with the +w flag, originating from the specified user.

-Definition at line 488 of file modules.cpp. +Definition at line 489 of file modules.cpp.

-

00489 {
-00490         WriteWallOps(User,false,"%s",text.c_str());
-00491 }
+
00490 {
+00491         WriteWallOps(User,false,"%s",text.c_str());
+00492 }
 
@@ -2617,23 +2617,23 @@ Remove a user's connection to the irc server, but leave their client in existenc

When you call this function, the user's file descriptor will be replaced with the value of FD_MAGIC_NUMBER and their old file descriptor will be closed. This idle client will remain until it is restored with a valid file descriptor, or is removed from IRC by an operator After this call, the pointer to user will be invalid.

-Definition at line 579 of file modules.cpp. +Definition at line 580 of file modules.cpp.

References connection::fd, FD_MAGIC_NUMBER, connection::host, and userrec::ident.

-

00580 {
-00581         unsigned int old_fd = user->fd;
-00582         user->fd = FD_MAGIC_NUMBER;
-00583         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
-00584         close(old_fd);
-00585         shutdown (old_fd,2);
-00586 }
+
00581 {
+00582         unsigned int old_fd = user->fd;
+00583         user->fd = FD_MAGIC_NUMBER;
+00584         Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str());
+00585         close(old_fd);
+00586         shutdown (old_fd,2);
+00587 }
 

The documentation for this class was generated from the following files: -
Generated on Wed Apr 13 12:32:29 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:09 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classVersion-members.html b/docs/module-doc/classVersion-members.html index a78156551..e4c059a89 100644 --- a/docs/module-doc/classVersion-members.html +++ b/docs/module-doc/classVersion-members.html @@ -15,7 +15,7 @@ RevisionVersion Version(int major, int minor, int revision, int build, int flags)Version ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classVersion.html b/docs/module-doc/classVersion.html index 41e660ec6..a14cd802d 100644 --- a/docs/module-doc/classVersion.html +++ b/docs/module-doc/classVersion.html @@ -221,7 +221,7 @@ Definition at line 114 of
The documentation for this class was generated from the following files: -
Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classXLine-members.html b/docs/module-doc/classXLine-members.html index 6797c1e27..d7a035758 100644 --- a/docs/module-doc/classXLine-members.html +++ b/docs/module-doc/classXLine-members.html @@ -14,7 +14,7 @@ set_timeXLine sourceXLine ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classXLine.html b/docs/module-doc/classXLine.html index db859e018..5134ae284 100644 --- a/docs/module-doc/classXLine.html +++ b/docs/module-doc/classXLine.html @@ -171,7 +171,7 @@ Definition at line 48 of fi
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classZLine-members.html b/docs/module-doc/classZLine-members.html index 7e1d5bd5d..a1c0d958e 100644 --- a/docs/module-doc/classZLine-members.html +++ b/docs/module-doc/classZLine-members.html @@ -16,7 +16,7 @@ set_timeXLine sourceXLine ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classZLine.html b/docs/module-doc/classZLine.html index ec16df960..7c580d073 100644 --- a/docs/module-doc/classZLine.html +++ b/docs/module-doc/classZLine.html @@ -82,7 +82,7 @@ Definition at line 103 of f
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classchanrec-members.html b/docs/module-doc/classchanrec-members.html index c6b93353d..bcb74395c 100644 --- a/docs/module-doc/classchanrec-members.html +++ b/docs/module-doc/classchanrec-members.html @@ -33,7 +33,7 @@ topicsetchanrec ~chanrec()chanrec [inline, virtual] ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:22 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:01 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classchanrec.html b/docs/module-doc/classchanrec.html index 21088efe5..00d40233e 100644 --- a/docs/module-doc/classchanrec.html +++ b/docs/module-doc/classchanrec.html @@ -488,7 +488,7 @@ Creation time.

Definition at line 111 of file channels.h.

-Referenced by chanrec(), and Server::PseudoToUser(). +Referenced by chanrec(), and Server::PseudoToUser().

@@ -656,7 +656,7 @@ The channels name.

Definition at line 99 of file channels.h.

-Referenced by chanrec(), and Server::PseudoToUser(). +Referenced by chanrec(), and Server::PseudoToUser().

@@ -740,7 +740,7 @@ If this member is an empty string, no topic was ever set.

Definition at line 119 of file channels.h.

-Referenced by chanrec(), and Server::PseudoToUser(). +Referenced by chanrec(), and Server::PseudoToUser().

@@ -768,7 +768,7 @@ If this is an empty string, no channel topic is set.

Definition at line 108 of file channels.h.

-Referenced by chanrec(), and Server::PseudoToUser(). +Referenced by chanrec(), and Server::PseudoToUser().

@@ -824,12 +824,12 @@ If no topic was ever set, this will be equal to 115 of file channels.h.

-Referenced by chanrec(), and Server::PseudoToUser(). +Referenced by chanrec(), and Server::PseudoToUser().


The documentation for this class was generated from the following files: -
Generated on Wed Apr 13 12:32:22 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:01 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classclassbase-members.html b/docs/module-doc/classclassbase-members.html index b8767da5d..4ef49d007 100644 --- a/docs/module-doc/classclassbase-members.html +++ b/docs/module-doc/classclassbase-members.html @@ -9,7 +9,7 @@ ageclassbase classbase()classbase [inline] ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:22 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:01 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classclassbase.html b/docs/module-doc/classclassbase.html index 8f0a90364..642201943 100644 --- a/docs/module-doc/classclassbase.html +++ b/docs/module-doc/classclassbase.html @@ -132,7 +132,7 @@ Referenced by classbase().
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:22 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:01 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classcommand__t-members.html b/docs/module-doc/classcommand__t-members.html index 44c7fd630..482a71372 100644 --- a/docs/module-doc/classcommand__t-members.html +++ b/docs/module-doc/classcommand__t-members.html @@ -19,7 +19,7 @@ total_bytescommand_t use_countcommand_t ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:22 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:01 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classcommand__t.html b/docs/module-doc/classcommand__t.html index 5b952627f..7236a7cb6 100644 --- a/docs/module-doc/classcommand__t.html +++ b/docs/module-doc/classcommand__t.html @@ -227,7 +227,7 @@ Definition at line 43 of
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:22 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:01 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classconnection-members.html b/docs/module-doc/classconnection-members.html index 09b4b14a2..39afc71bf 100644 --- a/docs/module-doc/classconnection-members.html +++ b/docs/module-doc/classconnection-members.html @@ -41,7 +41,7 @@ stateconnection TerminateLink(char *targethost)connection ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:23 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:03 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classconnection.html b/docs/module-doc/classconnection.html index f4684a222..5532b0afb 100644 --- a/docs/module-doc/classconnection.html +++ b/docs/module-doc/classconnection.html @@ -675,7 +675,7 @@ File descriptor of the connection.

Definition at line 178 of file connection.h.

-Referenced by ConfigReader::DumpErrors(), Server::PseudoToUser(), Server::SendTo(), serverrec::serverrec(), userrec::userrec(), and Server::UserToPseudo(). +Referenced by ConfigReader::DumpErrors(), Server::PseudoToUser(), Server::SendTo(), serverrec::serverrec(), userrec::userrec(), and Server::UserToPseudo().

@@ -731,7 +731,7 @@ Not used if this is a serverrec

Definition at line 182 of file connection.h.

-Referenced by userrec::GetFullRealHost(), Server::PseudoToUser(), userrec::userrec(), and Server::UserToPseudo(). +Referenced by userrec::GetFullRealHost(), Server::PseudoToUser(), userrec::userrec(), and Server::UserToPseudo().

@@ -1038,7 +1038,7 @@ Definition at line 224


The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:23 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:03 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classes.html b/docs/module-doc/classes.html index 062c1eb51..22b55fe9d 100644 --- a/docs/module-doc/classes.html +++ b/docs/module-doc/classes.html @@ -25,7 +25,7 @@
  S  
  Z  
connection   GLine   ModeParameter   Server   ZLine   
  D  
-
Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:59 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classircd__connector-members.html b/docs/module-doc/classircd__connector-members.html index d7d4dc551..a624cbdbc 100644 --- a/docs/module-doc/classircd__connector-members.html +++ b/docs/module-doc/classircd__connector-members.html @@ -35,7 +35,7 @@ Shrink(std::string key)Extensible stateircd_connector [private] ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:05 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classircd__connector.html b/docs/module-doc/classircd__connector.html index 7155a5007..43dd61b12 100644 --- a/docs/module-doc/classircd__connector.html +++ b/docs/module-doc/classircd__connector.html @@ -792,7 +792,7 @@ Definition at line 75
The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:05 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classpacket-members.html b/docs/module-doc/classpacket-members.html index 5a7b7f455..670a3c093 100644 --- a/docs/module-doc/classpacket-members.html +++ b/docs/module-doc/classpacket-members.html @@ -9,7 +9,7 @@ ageclassbase classbase()classbase [inline] ~classbase()classbase [inline] -
Generated on Wed Apr 13 12:32:26 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:07 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classpacket.html b/docs/module-doc/classpacket.html index b0f2d3ac8..7742aa8d5 100644 --- a/docs/module-doc/classpacket.html +++ b/docs/module-doc/classpacket.html @@ -24,7 +24,7 @@ This declaration is preserved here to maintain documentation only.

Definition at line 167 of file connection.h.


The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:26 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:07 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classserverrec-members.html b/docs/module-doc/classserverrec-members.html index 3b17f6dd5..4fbcbfddf 100644 --- a/docs/module-doc/classserverrec-members.html +++ b/docs/module-doc/classserverrec-members.html @@ -55,7 +55,7 @@ versionserverrec ~classbase()classbase [inline] ~serverrec()serverrec -
Generated on Wed Apr 13 12:32:29 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:09 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classserverrec.html b/docs/module-doc/classserverrec.html index 093f0056b..e584d2ec1 100644 --- a/docs/module-doc/classserverrec.html +++ b/docs/module-doc/classserverrec.html @@ -519,7 +519,7 @@ Referenced by serverrec()
The documentation for this class was generated from the following files:
-
Generated on Wed Apr 13 12:32:29 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:09 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classucrec-members.html b/docs/module-doc/classucrec-members.html index 3116cdbd5..80948312f 100644 --- a/docs/module-doc/classucrec-members.html +++ b/docs/module-doc/classucrec-members.html @@ -13,7 +13,7 @@ ucrec()ucrec [inline] ~classbase()classbase [inline] ~ucrec()ucrec [inline, virtual] -
Generated on Wed Apr 13 12:32:29 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:09 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classucrec.html b/docs/module-doc/classucrec.html index 3d83bc3da..8dcaa46e0 100644 --- a/docs/module-doc/classucrec.html +++ b/docs/module-doc/classucrec.html @@ -127,7 +127,7 @@ If the record is not in use, this value will be NULL.

Definition at line 213 of file channels.h.

-Referenced by Server::PseudoToUser(), and userrec::userrec(). +Referenced by Server::PseudoToUser(), and userrec::userrec().

@@ -160,7 +160,7 @@ Referenced by userrec::userre


The documentation for this class was generated from the following file: -
Generated on Wed Apr 13 12:32:29 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:09 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classuserrec-members.html b/docs/module-doc/classuserrec-members.html index 4a130b12c..ba3fb470e 100644 --- a/docs/module-doc/classuserrec-members.html +++ b/docs/module-doc/classuserrec-members.html @@ -64,7 +64,7 @@ userrec()userrec ~classbase()classbase [inline] ~userrec()userrec [inline, virtual] -
Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/classuserrec.html b/docs/module-doc/classuserrec.html index 766943daa..86de19f34 100644 --- a/docs/module-doc/classuserrec.html +++ b/docs/module-doc/classuserrec.html @@ -553,7 +553,7 @@ Referenced by userrec().

Definition at line 127 of file users.h.

-Referenced by Server::PseudoToUser(), and userrec(). +Referenced by Server::PseudoToUser(), and userrec().

@@ -693,7 +693,7 @@ The users ident reply.

Definition at line 110 of file users.h.

-Referenced by GetFullHost(), GetFullRealHost(), Server::PseudoToUser(), userrec(), and Server::UserToPseudo(). +Referenced by GetFullHost(), GetFullRealHost(), Server::PseudoToUser(), userrec(), and Server::UserToPseudo().

@@ -777,7 +777,7 @@ An invalid nickname indicates an unregistered connection prior to the NICK comma

Definition at line 106 of file users.h.

-Referenced by ConfigReader::DumpErrors(), GetFullHost(), GetFullRealHost(), Server::PseudoToUser(), Server::QuitUser(), and userrec(). +Referenced by ConfigReader::DumpErrors(), GetFullHost(), GetFullRealHost(), Server::PseudoToUser(), Server::QuitUser(), and userrec().

@@ -920,7 +920,7 @@ Referenced by userrec().


The documentation for this class was generated from the following files: -
Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/commands_8h-source.html b/docs/module-doc/commands_8h-source.html index 6b9303bb3..8292a4851 100644 --- a/docs/module-doc/commands_8h-source.html +++ b/docs/module-doc/commands_8h-source.html @@ -118,7 +118,7 @@ 00121 long duration(const char* str); 00122 00123 #endif -

Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +

Generated on Wed Apr 13 13:06:52 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/commands_8h.html b/docs/module-doc/commands_8h.html index b3159d464..c2e73c903 100644 --- a/docs/module-doc/commands_8h.html +++ b/docs/module-doc/commands_8h.html @@ -207,7 +207,7 @@ Other useful functions.

-Referenced by Server::AddELine(), Server::AddGLine(), Server::AddKLine(), Server::AddQLine(), Server::AddZLine(), and Server::CalcDuration(). +Referenced by Server::AddELine(), Server::AddGLine(), Server::AddKLine(), Server::AddQLine(), Server::AddZLine(), and Server::CalcDuration().

@@ -3722,7 +3722,7 @@ Functions for u:lined servers.

-Referenced by Server::IsUlined(). +Referenced by Server::IsUlined().

@@ -3793,7 +3793,7 @@ Referenced by Server::IsUli -


Generated on Wed Apr 13 12:32:19 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:57 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/connection_8h-source.html b/docs/module-doc/connection_8h-source.html index 3d6983473..66fa4b815 100644 --- a/docs/module-doc/connection_8h-source.html +++ b/docs/module-doc/connection_8h-source.html @@ -168,7 +168,7 @@ 00300 00301 #endif 00302 -

Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +

Generated on Wed Apr 13 13:06:52 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/connection_8h.html b/docs/module-doc/connection_8h.html index 36d2484b2..6b1c36e2d 100644 --- a/docs/module-doc/connection_8h.html +++ b/docs/module-doc/connection_8h.html @@ -191,7 +191,7 @@ Definition at line 39 Definition at line 36 of file connection.h. -
Generated on Wed Apr 13 12:32:19 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:57 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/ctables_8h-source.html b/docs/module-doc/ctables_8h-source.html index d7b5fdf89..0b7e7f7d6 100644 --- a/docs/module-doc/ctables_8h-source.html +++ b/docs/module-doc/ctables_8h-source.html @@ -42,7 +42,7 @@ 00051 00052 #endif 00053 -

Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +

Generated on Wed Apr 13 13:06:52 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/ctables_8h.html b/docs/module-doc/ctables_8h.html index 634815250..d67e8e91b 100644 --- a/docs/module-doc/ctables_8h.html +++ b/docs/module-doc/ctables_8h.html @@ -17,7 +17,7 @@  A structure that defines a command. More...

-
Generated on Wed Apr 13 12:32:19 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:57 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/dns_8h-source.html b/docs/module-doc/dns_8h-source.html index 0d62a3379..3b554ce4f 100644 --- a/docs/module-doc/dns_8h-source.html +++ b/docs/module-doc/dns_8h-source.html @@ -70,7 +70,7 @@ 00093 }; 00094 00095 #endif -

Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +

Generated on Wed Apr 13 13:06:52 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/dns_8h.html b/docs/module-doc/dns_8h.html index e8de7e681..6156f8382 100644 --- a/docs/module-doc/dns_8h.html +++ b/docs/module-doc/dns_8h.html @@ -20,7 +20,7 @@ struct  dns_ip4list -
Generated on Wed Apr 13 12:32:19 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:57 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/files.html b/docs/module-doc/files.html index 7f5849ac8..16d19a30f 100644 --- a/docs/module-doc/files.html +++ b/docs/module-doc/files.html @@ -23,7 +23,7 @@ users.h [code] xline.h [code] -
Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +
Generated on Wed Apr 13 13:06:51 2005 for InspIRCd by doxygen 1.3.3
diff --git a/docs/module-doc/functions.html b/docs/module-doc/functions.html index 35d8dcc9a..107b5912e 100644 --- a/docs/module-doc/functions.html +++ b/docs/module-doc/functions.html @@ -233,7 +233,8 @@ Here is a list of all class members with links to the classes they belong to:

Module
  • OnPacketReceive() : Module
  • OnPacketTransmit() : Module
  • OnRehash() -: Module
  • OnServerRaw() +: Module
  • OnSendList() +: Module
  • OnServerRaw() : Module
  • OnUserConnect() : Module
  • OnUserJoin() : Module
  • OnUserPart() @@ -296,9 +297,9 @@ Here is a list of all class members with links to the classes they belong to:

    Server
  • SendTo() : Server
  • SendToModeMask() : Server
  • SendWallops() -: Server
  • Server() -: Server
  • server -: userrec
  • servername +: Server
  • server +: userrec
  • Server() +: Server
  • servername : ircd_connector
  • serverrec() : serverrec
  • set_by : HostItem
  • set_time @@ -343,9 +344,9 @@ Here is a list of all class members with links to the classes they belong to:

    - v -

    +: ConfigReader
  • Version() +: Version
  • version +: serverrec

    - ~ -

    • ~chanrec() @@ -361,7 +362,7 @@ Here is a list of all class members with links to the classes they belong to:

      serverrec
    • ~ucrec() : ucrec
    • ~userrec() : userrec
    -
    Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:00 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/functions_func.html b/docs/module-doc/functions_func.html index 107e6cff6..6fbe3d1b4 100644 --- a/docs/module-doc/functions_func.html +++ b/docs/module-doc/functions_func.html @@ -156,7 +156,8 @@ : Module
  • OnPacketReceive() : Module
  • OnPacketTransmit() : Module
  • OnRehash() -: Module
  • OnServerRaw() +: Module
  • OnSendList() +: Module
  • OnServerRaw() : Module
  • OnUserConnect() : Module
  • OnUserJoin() : Module
  • OnUserPart() @@ -246,7 +247,7 @@ : serverrec
  • ~ucrec() : ucrec
  • ~userrec() : userrec -
    Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:00 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/functions_vars.html b/docs/module-doc/functions_vars.html index fd3393478..223ac0d2c 100644 --- a/docs/module-doc/functions_vars.html +++ b/docs/module-doc/functions_vars.html @@ -180,7 +180,7 @@
  • -
    Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:00 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/globals.html b/docs/module-doc/globals.html index 277bb64e7..1dd06ad2f 100644 --- a/docs/module-doc/globals.html +++ b/docs/module-doc/globals.html @@ -334,7 +334,7 @@ Here is a list of all file members with links to the files they belong to:

    zline_make_global() : xline.h
  • zline_set_creation_time() : xline.h -
    Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:11 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/globals_defs.html b/docs/module-doc/globals_defs.html index 51a5f2540..a4ba2f7aa 100644 --- a/docs/module-doc/globals_defs.html +++ b/docs/module-doc/globals_defs.html @@ -92,7 +92,7 @@ : modules.h
  • VF_STATIC : modules.h
  • VF_VENDOR : modules.h -
    Generated on Wed Apr 13 12:32:31 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:11 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/globals_func.html b/docs/module-doc/globals_func.html index 3112091d9..c708d10ff 100644 --- a/docs/module-doc/globals_func.html +++ b/docs/module-doc/globals_func.html @@ -211,7 +211,7 @@
  • zline_make_global() : xline.h
  • zline_set_creation_time() : xline.h -
    Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:11 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/globals_type.html b/docs/module-doc/globals_type.html index 7609a4875..084529969 100644 --- a/docs/module-doc/globals_type.html +++ b/docs/module-doc/globals_type.html @@ -26,7 +26,7 @@ : modules.h
  • user_hash : modules.cpp
  • VoidPointer : base.h -
    Generated on Wed Apr 13 12:32:31 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:11 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/globals_vars.html b/docs/module-doc/globals_vars.html index 27bb6b227..104b12073 100644 --- a/docs/module-doc/globals_vars.html +++ b/docs/module-doc/globals_vars.html @@ -105,7 +105,7 @@ : modules.cpp
  • WHOWAS_MAX : modules.cpp, channels.cpp
  • WHOWAS_STALE : modules.cpp, channels.cpp -
    Generated on Wed Apr 13 12:32:31 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:11 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/hierarchy.html b/docs/module-doc/hierarchy.html index 4103344aa..4e9f519c8 100644 --- a/docs/module-doc/hierarchy.html +++ b/docs/module-doc/hierarchy.html @@ -54,7 +54,7 @@
  • nspace::hash< string >
  • StrHashComp -
    Generated on Wed Apr 13 12:32:21 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:59 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/main.html b/docs/module-doc/main.html index 12a93e728..0ddc531b9 100644 --- a/docs/module-doc/main.html +++ b/docs/module-doc/main.html @@ -7,7 +7,7 @@

    InspIRCd Documentation

    -


    Generated on Wed Apr 13 12:32:14 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:51 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/message_8h-source.html b/docs/module-doc/message_8h-source.html index 9ae75ebfc..f92c6a26c 100644 --- a/docs/module-doc/message_8h-source.html +++ b/docs/module-doc/message_8h-source.html @@ -57,7 +57,7 @@ 00050 void send_network_quit(const char* nick, const char* reason); 00051 00052 #endif -

  • Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +

    Generated on Wed Apr 13 13:06:52 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/message_8h.html b/docs/module-doc/message_8h.html index 9878c2b09..1b7bd5428 100644 --- a/docs/module-doc/message_8h.html +++ b/docs/module-doc/message_8h.html @@ -155,7 +155,7 @@

    -Referenced by Server::ChangeHost(). +Referenced by Server::ChangeHost().

    @@ -195,7 +195,7 @@ Referenced by Server::Chang

    -Referenced by Server::ChangeGECOS(). +Referenced by Server::ChangeGECOS().

    @@ -331,7 +331,7 @@ Referenced by Server::Chang

    -Referenced by Server::ChanMode(). +Referenced by Server::ChanMode().

    @@ -371,7 +371,7 @@ Referenced by Server::ChanM

    -Referenced by Server::CommonChannels(). +Referenced by Server::CommonChannels().

    @@ -449,7 +449,7 @@ Referenced by Server::Commo

    -Referenced by Server::GetUsers(), and Server::IsOnChannel(). +Referenced by Server::GetUsers(), and Server::IsOnChannel().

    @@ -547,7 +547,7 @@ Referenced by Server::GetUs

    -Referenced by Server::GetUsers(), and Server::IsNick(). +Referenced by Server::GetUsers(), and Server::IsNick().

    @@ -674,7 +674,7 @@ Referenced by Server::GetUs

    -Referenced by Server::QuitUser(). +Referenced by Server::QuitUser().

    @@ -735,7 +735,7 @@ Referenced by Server::QuitU -


    Generated on Wed Apr 13 12:32:19 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:57 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/mode_8h-source.html b/docs/module-doc/mode_8h-source.html index a289e6744..9ae105811 100644 --- a/docs/module-doc/mode_8h-source.html +++ b/docs/module-doc/mode_8h-source.html @@ -53,7 +53,7 @@ 00046 00047 00048 #endif -

    Generated on Wed Apr 13 12:32:15 2005 for InspIRCd by +

    Generated on Wed Apr 13 13:06:52 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/mode_8h.html b/docs/module-doc/mode_8h.html index 4335f8288..4a285875f 100644 --- a/docs/module-doc/mode_8h.html +++ b/docs/module-doc/mode_8h.html @@ -788,7 +788,7 @@ -
    Generated on Wed Apr 13 12:32:19 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:57 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/modules_8cpp-source.html b/docs/module-doc/modules_8cpp-source.html index 29bf17884..e96be8f92 100644 --- a/docs/module-doc/modules_8cpp-source.html +++ b/docs/module-doc/modules_8cpp-source.html @@ -338,547 +338,548 @@ 00331 int Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; }; 00332 void Module::OnLoadModule(Module* mod,std::string name) { }; 00333 void Module::OnBackgroundTimer(time_t curtime) { }; -00334 -00335 // server is a wrapper class that provides methods to all of the C-style -00336 // exports in the core -00337 // -00338 -00339 Server::Server() -00340 { -00341 } -00342 -00343 Server::~Server() -00344 { -00345 } -00346 -00347 void Server::SendOpers(std::string s) -00348 { -00349 WriteOpers("%s",s.c_str()); -00350 } -00351 -00352 bool Server::MatchText(std::string sliteral, std::string spattern) -00353 { -00354 char literal[MAXBUF],pattern[MAXBUF]; -00355 strlcpy(literal,sliteral.c_str(),MAXBUF); -00356 strlcpy(pattern,spattern.c_str(),MAXBUF); -00357 return match(literal,pattern); -00358 } -00359 -00360 void Server::SendToModeMask(std::string modes, int flags, std::string text) -00361 { -00362 WriteMode(modes.c_str(),flags,"%s",text.c_str()); -00363 } -00364 -00365 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key) -00366 { -00367 return add_channel(user,cname.c_str(),key.c_str(),true); -00368 } -00369 -00370 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason) -00371 { -00372 return del_channel(user,cname.c_str(),reason.c_str(),false); -00373 } -00374 -00375 chanuserlist Server::GetUsers(chanrec* chan) -00376 { -00377 chanuserlist userl; -00378 userl.clear(); -00379 for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) -00380 { -00381 if (i->second) -00382 { -00383 if (has_channel(i->second,chan)) -00384 { -00385 if (isnick(i->second->nick)) -00386 { -00387 userl.push_back(i->second); -00388 } -00389 } -00390 } -00391 } -00392 return userl; -00393 } -00394 void Server::ChangeUserNick(userrec* user, std::string nickname) -00395 { -00396 force_nickchange(user,nickname.c_str()); -00397 } -00398 -00399 void Server::QuitUser(userrec* user, std::string reason) -00400 { -00401 send_network_quit(user->nick,reason.c_str()); -00402 kill_link(user,reason.c_str()); -00403 } -00404 -00405 bool Server::IsUlined(std::string server) -00406 { -00407 return is_uline(server.c_str()); -00408 } -00409 -00410 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user) -00411 { -00412 call_handler(commandname.c_str(),parameters,pcnt,user); -00413 } -00414 -00415 void Server::Log(int level, std::string s) -00416 { -00417 log(level,"%s",s.c_str()); -00418 } -00419 -00420 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source) -00421 { -00422 createcommand(cmd,f,flags,minparams,source); -00423 } -00424 -00425 void Server::SendMode(char **parameters, int pcnt, userrec *user) -00426 { -00427 server_mode(parameters,pcnt,user); -00428 } -00429 -00430 void Server::Send(int Socket, std::string s) -00431 { -00432 Write(Socket,"%s",s.c_str()); -00433 } -00434 -00435 void Server::SendServ(int Socket, std::string s) -00436 { -00437 WriteServ(Socket,"%s",s.c_str()); -00438 } -00439 -00440 void Server::SendFrom(int Socket, userrec* User, std::string s) -00441 { -00442 WriteFrom(Socket,User,"%s",s.c_str()); -00443 } -00444 -00445 void Server::SendTo(userrec* Source, userrec* Dest, std::string s) -00446 { -00447 if (!Source) -00448 { -00449 // if source is NULL, then the message originates from the local server -00450 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str()); -00451 } -00452 else -00453 { -00454 // otherwise it comes from the user specified -00455 WriteTo(Source,Dest,"%s",s.c_str()); -00456 } -00457 } -00458 -00459 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender) -00460 { -00461 if (IncludeSender) -00462 { -00463 WriteChannel(Channel,User,"%s",s.c_str()); -00464 } -00465 else -00466 { -00467 ChanExceptSender(Channel,User,"%s",s.c_str()); -00468 } -00469 } -00470 -00471 bool Server::CommonChannels(userrec* u1, userrec* u2) -00472 { -00473 return (common_channels(u1,u2) != 0); -00474 } -00475 -00476 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender) -00477 { -00478 if (IncludeSender) -00479 { -00480 WriteCommon(User,"%s",text.c_str()); -00481 } -00482 else -00483 { -00484 WriteCommonExcept(User,"%s",text.c_str()); -00485 } -00486 } -00487 -00488 void Server::SendWallops(userrec* User, std::string text) -00489 { -00490 WriteWallOps(User,false,"%s",text.c_str()); -00491 } -00492 -00493 void Server::ChangeHost(userrec* user, std::string host) -00494 { -00495 ChangeDisplayedHost(user,host.c_str()); -00496 } -00497 -00498 void Server::ChangeGECOS(userrec* user, std::string gecos) -00499 { -00500 ChangeName(user,gecos.c_str()); -00501 } -00502 -00503 bool Server::IsNick(std::string nick) -00504 { -00505 return (isnick(nick.c_str()) != 0); -00506 } -00507 -00508 userrec* Server::FindNick(std::string nick) -00509 { -00510 return Find(nick); -00511 } -00512 -00513 chanrec* Server::FindChannel(std::string channel) -00514 { -00515 return FindChan(channel.c_str()); -00516 } -00517 -00518 std::string Server::ChanMode(userrec* User, chanrec* Chan) -00519 { -00520 return cmode(User,Chan); -00521 } -00522 -00523 bool Server::IsOnChannel(userrec* User, chanrec* Chan) -00524 { -00525 return has_channel(User,Chan); -00526 } -00527 -00528 std::string Server::GetServerName() -00529 { -00530 return getservername(); -00531 } -00532 -00533 std::string Server::GetNetworkName() -00534 { -00535 return getnetworkname(); -00536 } -00537 -00538 Admin Server::GetAdmin() -00539 { -00540 return Admin(getadminname(),getadminemail(),getadminnick()); -00541 } -00542 +00334 void Module::OnSendList(userrec* user, chanrec* channel, char mode) { }; +00335 +00336 // server is a wrapper class that provides methods to all of the C-style +00337 // exports in the core +00338 // +00339 +00340 Server::Server() +00341 { +00342 } +00343 +00344 Server::~Server() +00345 { +00346 } +00347 +00348 void Server::SendOpers(std::string s) +00349 { +00350 WriteOpers("%s",s.c_str()); +00351 } +00352 +00353 bool Server::MatchText(std::string sliteral, std::string spattern) +00354 { +00355 char literal[MAXBUF],pattern[MAXBUF]; +00356 strlcpy(literal,sliteral.c_str(),MAXBUF); +00357 strlcpy(pattern,spattern.c_str(),MAXBUF); +00358 return match(literal,pattern); +00359 } +00360 +00361 void Server::SendToModeMask(std::string modes, int flags, std::string text) +00362 { +00363 WriteMode(modes.c_str(),flags,"%s",text.c_str()); +00364 } +00365 +00366 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key) +00367 { +00368 return add_channel(user,cname.c_str(),key.c_str(),true); +00369 } +00370 +00371 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason) +00372 { +00373 return del_channel(user,cname.c_str(),reason.c_str(),false); +00374 } +00375 +00376 chanuserlist Server::GetUsers(chanrec* chan) +00377 { +00378 chanuserlist userl; +00379 userl.clear(); +00380 for (user_hash::const_iterator i = clientlist.begin(); i != clientlist.end(); i++) +00381 { +00382 if (i->second) +00383 { +00384 if (has_channel(i->second,chan)) +00385 { +00386 if (isnick(i->second->nick)) +00387 { +00388 userl.push_back(i->second); +00389 } +00390 } +00391 } +00392 } +00393 return userl; +00394 } +00395 void Server::ChangeUserNick(userrec* user, std::string nickname) +00396 { +00397 force_nickchange(user,nickname.c_str()); +00398 } +00399 +00400 void Server::QuitUser(userrec* user, std::string reason) +00401 { +00402 send_network_quit(user->nick,reason.c_str()); +00403 kill_link(user,reason.c_str()); +00404 } +00405 +00406 bool Server::IsUlined(std::string server) +00407 { +00408 return is_uline(server.c_str()); +00409 } +00410 +00411 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user) +00412 { +00413 call_handler(commandname.c_str(),parameters,pcnt,user); +00414 } +00415 +00416 void Server::Log(int level, std::string s) +00417 { +00418 log(level,"%s",s.c_str()); +00419 } +00420 +00421 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source) +00422 { +00423 createcommand(cmd,f,flags,minparams,source); +00424 } +00425 +00426 void Server::SendMode(char **parameters, int pcnt, userrec *user) +00427 { +00428 server_mode(parameters,pcnt,user); +00429 } +00430 +00431 void Server::Send(int Socket, std::string s) +00432 { +00433 Write(Socket,"%s",s.c_str()); +00434 } +00435 +00436 void Server::SendServ(int Socket, std::string s) +00437 { +00438 WriteServ(Socket,"%s",s.c_str()); +00439 } +00440 +00441 void Server::SendFrom(int Socket, userrec* User, std::string s) +00442 { +00443 WriteFrom(Socket,User,"%s",s.c_str()); +00444 } +00445 +00446 void Server::SendTo(userrec* Source, userrec* Dest, std::string s) +00447 { +00448 if (!Source) +00449 { +00450 // if source is NULL, then the message originates from the local server +00451 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str()); +00452 } +00453 else +00454 { +00455 // otherwise it comes from the user specified +00456 WriteTo(Source,Dest,"%s",s.c_str()); +00457 } +00458 } +00459 +00460 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender) +00461 { +00462 if (IncludeSender) +00463 { +00464 WriteChannel(Channel,User,"%s",s.c_str()); +00465 } +00466 else +00467 { +00468 ChanExceptSender(Channel,User,"%s",s.c_str()); +00469 } +00470 } +00471 +00472 bool Server::CommonChannels(userrec* u1, userrec* u2) +00473 { +00474 return (common_channels(u1,u2) != 0); +00475 } +00476 +00477 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender) +00478 { +00479 if (IncludeSender) +00480 { +00481 WriteCommon(User,"%s",text.c_str()); +00482 } +00483 else +00484 { +00485 WriteCommonExcept(User,"%s",text.c_str()); +00486 } +00487 } +00488 +00489 void Server::SendWallops(userrec* User, std::string text) +00490 { +00491 WriteWallOps(User,false,"%s",text.c_str()); +00492 } +00493 +00494 void Server::ChangeHost(userrec* user, std::string host) +00495 { +00496 ChangeDisplayedHost(user,host.c_str()); +00497 } +00498 +00499 void Server::ChangeGECOS(userrec* user, std::string gecos) +00500 { +00501 ChangeName(user,gecos.c_str()); +00502 } +00503 +00504 bool Server::IsNick(std::string nick) +00505 { +00506 return (isnick(nick.c_str()) != 0); +00507 } +00508 +00509 userrec* Server::FindNick(std::string nick) +00510 { +00511 return Find(nick); +00512 } +00513 +00514 chanrec* Server::FindChannel(std::string channel) +00515 { +00516 return FindChan(channel.c_str()); +00517 } +00518 +00519 std::string Server::ChanMode(userrec* User, chanrec* Chan) +00520 { +00521 return cmode(User,Chan); +00522 } +00523 +00524 bool Server::IsOnChannel(userrec* User, chanrec* Chan) +00525 { +00526 return has_channel(User,Chan); +00527 } +00528 +00529 std::string Server::GetServerName() +00530 { +00531 return getservername(); +00532 } +00533 +00534 std::string Server::GetNetworkName() +00535 { +00536 return getnetworkname(); +00537 } +00538 +00539 Admin Server::GetAdmin() +00540 { +00541 return Admin(getadminname(),getadminemail(),getadminnick()); +00542 } 00543 00544 -00545 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off) -00546 { -00547 if (type == MT_SERVER) -00548 { -00549 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion"); -00550 return false; -00551 } -00552 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) -00553 { -00554 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported"); -00555 return false; -00556 } -00557 if ((params_when_on>1) || (params_when_off>1)) -00558 { -00559 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported"); -00560 return false; -00561 } -00562 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); -00563 } -00564 -00565 bool Server::AddExtendedListMode(char modechar) -00566 { -00567 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); -00568 if (res) -00569 ModeMakeList(modechar); -00570 return res; -00571 } -00572 -00573 int Server::CountUsers(chanrec* c) -00574 { -00575 return usercount(c); -00576 } -00577 +00545 +00546 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off) +00547 { +00548 if (type == MT_SERVER) +00549 { +00550 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion"); +00551 return false; +00552 } +00553 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) +00554 { +00555 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported"); +00556 return false; +00557 } +00558 if ((params_when_on>1) || (params_when_off>1)) +00559 { +00560 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported"); +00561 return false; +00562 } +00563 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); +00564 } +00565 +00566 bool Server::AddExtendedListMode(char modechar) +00567 { +00568 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); +00569 if (res) +00570 ModeMakeList(modechar); +00571 return res; +00572 } +00573 +00574 int Server::CountUsers(chanrec* c) +00575 { +00576 return usercount(c); +00577 } 00578 -00579 bool Server::UserToPseudo(userrec* user,std::string message) -00580 { -00581 unsigned int old_fd = user->fd; -00582 user->fd = FD_MAGIC_NUMBER; -00583 Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str()); -00584 close(old_fd); -00585 shutdown (old_fd,2); -00586 } -00587 -00588 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message) -00589 { -00590 zombie->fd = alive->fd; -00591 alive->fd = FD_MAGIC_NUMBER; -00592 Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick); -00593 kill_link(alive,message.c_str()); -00594 for (int i = 0; i != MAXCHANS; i++) -00595 { -00596 if (zombie->chans[i].channel != NULL) -00597 { -00598 if (zombie->chans[i].channel->name) -00599 { -00600 chanrec* Ptr = zombie->chans[i].channel; -00601 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name); -00602 if (Ptr->topicset) -00603 { -00604 WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic); -00605 WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); -00606 } -00607 userlist(zombie,Ptr); -00608 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name); -00609 WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr)); -00610 WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created); -00611 -00612 } -00613 } -00614 } -00615 -00616 } -00617 -00618 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask) -00619 { -00620 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -00621 } -00622 -00623 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname) -00624 { -00625 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); -00626 } -00627 -00628 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr) -00629 { -00630 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); -00631 } -00632 -00633 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask) -00634 { -00635 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -00636 } -00637 -00638 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask) -00639 { -00640 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -00641 } -00642 -00643 bool Server::DelGLine(std::string hostmask) -00644 { -00645 del_gline(hostmask.c_str()); -00646 } -00647 -00648 bool Server::DelQLine(std::string nickname) -00649 { -00650 del_qline(nickname.c_str()); -00651 } -00652 -00653 bool Server::DelZLine(std::string ipaddr) -00654 { -00655 del_zline(ipaddr.c_str()); -00656 } -00657 -00658 bool Server::DelKLine(std::string hostmask) -00659 { -00660 del_kline(hostmask.c_str()); -00661 } -00662 -00663 bool Server::DelELine(std::string hostmask) -00664 { -00665 del_eline(hostmask.c_str()); -00666 } -00667 -00668 long Server::CalcDuration(std::string delta) -00669 { -00670 return duration(delta.c_str()); -00671 } -00672 +00579 +00580 bool Server::UserToPseudo(userrec* user,std::string message) +00581 { +00582 unsigned int old_fd = user->fd; +00583 user->fd = FD_MAGIC_NUMBER; +00584 Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str()); +00585 close(old_fd); +00586 shutdown (old_fd,2); +00587 } +00588 +00589 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message) +00590 { +00591 zombie->fd = alive->fd; +00592 alive->fd = FD_MAGIC_NUMBER; +00593 Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick); +00594 kill_link(alive,message.c_str()); +00595 for (int i = 0; i != MAXCHANS; i++) +00596 { +00597 if (zombie->chans[i].channel != NULL) +00598 { +00599 if (zombie->chans[i].channel->name) +00600 { +00601 chanrec* Ptr = zombie->chans[i].channel; +00602 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name); +00603 if (Ptr->topicset) +00604 { +00605 WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic); +00606 WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); +00607 } +00608 userlist(zombie,Ptr); +00609 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name); +00610 WriteServ(zombie->fd,"324 %s %s +%s",zombie->nick, Ptr->name,chanmodes(Ptr)); +00611 WriteServ(zombie->fd,"329 %s %s %d", zombie->nick, Ptr->name, Ptr->created); +00612 +00613 } +00614 } +00615 } +00616 +00617 } +00618 +00619 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask) +00620 { +00621 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00622 } +00623 +00624 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname) +00625 { +00626 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); +00627 } +00628 +00629 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr) +00630 { +00631 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); +00632 } +00633 +00634 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask) +00635 { +00636 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00637 } +00638 +00639 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask) +00640 { +00641 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00642 } +00643 +00644 bool Server::DelGLine(std::string hostmask) +00645 { +00646 del_gline(hostmask.c_str()); +00647 } +00648 +00649 bool Server::DelQLine(std::string nickname) +00650 { +00651 del_qline(nickname.c_str()); +00652 } +00653 +00654 bool Server::DelZLine(std::string ipaddr) +00655 { +00656 del_zline(ipaddr.c_str()); +00657 } +00658 +00659 bool Server::DelKLine(std::string hostmask) +00660 { +00661 del_kline(hostmask.c_str()); +00662 } +00663 +00664 bool Server::DelELine(std::string hostmask) +00665 { +00666 del_eline(hostmask.c_str()); +00667 } +00668 +00669 long Server::CalcDuration(std::string delta) +00670 { +00671 return duration(delta.c_str()); +00672 } 00673 -00674 ConfigReader::ConfigReader() -00675 { -00676 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -00677 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -00678 this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog); -00679 if (!this->readerror) -00680 this->error = CONF_FILE_NOT_FOUND; -00681 } -00682 +00674 +00675 ConfigReader::ConfigReader() +00676 { +00677 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +00678 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +00679 this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog); +00680 if (!this->readerror) +00681 this->error = CONF_FILE_NOT_FOUND; +00682 } 00683 -00684 ConfigReader::~ConfigReader() -00685 { -00686 if (this->cache) -00687 delete this->cache; -00688 if (this->errorlog) -00689 delete this->errorlog; -00690 } -00691 +00684 +00685 ConfigReader::~ConfigReader() +00686 { +00687 if (this->cache) +00688 delete this->cache; +00689 if (this->errorlog) +00690 delete this->errorlog; +00691 } 00692 -00693 ConfigReader::ConfigReader(std::string filename) -00694 { -00695 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -00696 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -00697 this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog); -00698 if (!this->readerror) -00699 this->error = CONF_FILE_NOT_FOUND; -00700 }; -00701 -00702 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index) -00703 { -00704 char val[MAXBUF]; -00705 char t[MAXBUF]; -00706 char n[MAXBUF]; -00707 strlcpy(t,tag.c_str(),MAXBUF); -00708 strlcpy(n,name.c_str(),MAXBUF); -00709 int res = ReadConf(cache,t,n,index,val); -00710 if (!res) -00711 { -00712 this->error = CONF_VALUE_NOT_FOUND; -00713 return ""; -00714 } -00715 return std::string(val); -00716 } -00717 -00718 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index) -00719 { -00720 char val[MAXBUF]; -00721 char t[MAXBUF]; -00722 char n[MAXBUF]; -00723 strlcpy(t,tag.c_str(),MAXBUF); -00724 strlcpy(n,name.c_str(),MAXBUF); -00725 int res = ReadConf(cache,t,n,index,val); -00726 if (!res) -00727 { -00728 this->error = CONF_VALUE_NOT_FOUND; -00729 return false; -00730 } -00731 std::string s = val; -00732 return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1")); -00733 } -00734 -00735 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned) -00736 { -00737 char val[MAXBUF]; -00738 char t[MAXBUF]; -00739 char n[MAXBUF]; -00740 strlcpy(t,tag.c_str(),MAXBUF); -00741 strlcpy(n,name.c_str(),MAXBUF); -00742 int res = ReadConf(cache,t,n,index,val); -00743 if (!res) -00744 { -00745 this->error = CONF_VALUE_NOT_FOUND; -00746 return 0; -00747 } -00748 for (int i = 0; i < strlen(val); i++) -00749 { -00750 if (!isdigit(val[i])) -00751 { -00752 this->error = CONF_NOT_A_NUMBER; -00753 return 0; -00754 } -00755 } -00756 if ((needs_unsigned) && (atoi(val)<0)) -00757 { -00758 this->error = CONF_NOT_UNSIGNED; -00759 return 0; -00760 } -00761 return atoi(val); -00762 } -00763 -00764 long ConfigReader::GetError() -00765 { -00766 long olderr = this->error; -00767 this->error = 0; -00768 return olderr; -00769 } -00770 -00771 void ConfigReader::DumpErrors(bool bail, userrec* user) -00772 { -00773 if (bail) -00774 { -00775 printf("There were errors in your configuration:\n%s",errorlog->str().c_str()); -00776 exit(0); -00777 } -00778 else -00779 { -00780 char dataline[1024]; -00781 if (user) -00782 { -00783 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick); -00784 while (!errorlog->eof()) -00785 { -00786 errorlog->getline(dataline,1024); -00787 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline); -00788 } -00789 } -00790 else -00791 { -00792 WriteOpers("There were errors in the configuration file:",user->nick); -00793 while (!errorlog->eof()) -00794 { -00795 errorlog->getline(dataline,1024); -00796 WriteOpers(dataline); -00797 } -00798 } -00799 return; -00800 } -00801 } -00802 +00693 +00694 ConfigReader::ConfigReader(std::string filename) +00695 { +00696 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +00697 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +00698 this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog); +00699 if (!this->readerror) +00700 this->error = CONF_FILE_NOT_FOUND; +00701 }; +00702 +00703 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index) +00704 { +00705 char val[MAXBUF]; +00706 char t[MAXBUF]; +00707 char n[MAXBUF]; +00708 strlcpy(t,tag.c_str(),MAXBUF); +00709 strlcpy(n,name.c_str(),MAXBUF); +00710 int res = ReadConf(cache,t,n,index,val); +00711 if (!res) +00712 { +00713 this->error = CONF_VALUE_NOT_FOUND; +00714 return ""; +00715 } +00716 return std::string(val); +00717 } +00718 +00719 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index) +00720 { +00721 char val[MAXBUF]; +00722 char t[MAXBUF]; +00723 char n[MAXBUF]; +00724 strlcpy(t,tag.c_str(),MAXBUF); +00725 strlcpy(n,name.c_str(),MAXBUF); +00726 int res = ReadConf(cache,t,n,index,val); +00727 if (!res) +00728 { +00729 this->error = CONF_VALUE_NOT_FOUND; +00730 return false; +00731 } +00732 std::string s = val; +00733 return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1")); +00734 } +00735 +00736 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned) +00737 { +00738 char val[MAXBUF]; +00739 char t[MAXBUF]; +00740 char n[MAXBUF]; +00741 strlcpy(t,tag.c_str(),MAXBUF); +00742 strlcpy(n,name.c_str(),MAXBUF); +00743 int res = ReadConf(cache,t,n,index,val); +00744 if (!res) +00745 { +00746 this->error = CONF_VALUE_NOT_FOUND; +00747 return 0; +00748 } +00749 for (int i = 0; i < strlen(val); i++) +00750 { +00751 if (!isdigit(val[i])) +00752 { +00753 this->error = CONF_NOT_A_NUMBER; +00754 return 0; +00755 } +00756 } +00757 if ((needs_unsigned) && (atoi(val)<0)) +00758 { +00759 this->error = CONF_NOT_UNSIGNED; +00760 return 0; +00761 } +00762 return atoi(val); +00763 } +00764 +00765 long ConfigReader::GetError() +00766 { +00767 long olderr = this->error; +00768 this->error = 0; +00769 return olderr; +00770 } +00771 +00772 void ConfigReader::DumpErrors(bool bail, userrec* user) +00773 { +00774 if (bail) +00775 { +00776 printf("There were errors in your configuration:\n%s",errorlog->str().c_str()); +00777 exit(0); +00778 } +00779 else +00780 { +00781 char dataline[1024]; +00782 if (user) +00783 { +00784 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick); +00785 while (!errorlog->eof()) +00786 { +00787 errorlog->getline(dataline,1024); +00788 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline); +00789 } +00790 } +00791 else +00792 { +00793 WriteOpers("There were errors in the configuration file:",user->nick); +00794 while (!errorlog->eof()) +00795 { +00796 errorlog->getline(dataline,1024); +00797 WriteOpers(dataline); +00798 } +00799 } +00800 return; +00801 } +00802 } 00803 -00804 int ConfigReader::Enumerate(std::string tag) -00805 { -00806 return EnumConf(cache,tag.c_str()); -00807 } -00808 -00809 int ConfigReader::EnumerateValues(std::string tag, int index) -00810 { -00811 return EnumValues(cache, tag.c_str(), index); -00812 } -00813 -00814 bool ConfigReader::Verify() -00815 { -00816 return this->readerror; -00817 } -00818 +00804 +00805 int ConfigReader::Enumerate(std::string tag) +00806 { +00807 return EnumConf(cache,tag.c_str()); +00808 } +00809 +00810 int ConfigReader::EnumerateValues(std::string tag, int index) +00811 { +00812 return EnumValues(cache, tag.c_str(), index); +00813 } +00814 +00815 bool ConfigReader::Verify() +00816 { +00817 return this->readerror; +00818 } 00819 -00820 FileReader::FileReader(std::string filename) -00821 { -00822 file_cache c; -00823 readfile(c,filename.c_str()); -00824 this->fc = c; -00825 } -00826 -00827 FileReader::FileReader() -00828 { -00829 } -00830 -00831 void FileReader::LoadFile(std::string filename) -00832 { -00833 file_cache c; -00834 readfile(c,filename.c_str()); -00835 this->fc = c; -00836 } -00837 +00820 +00821 FileReader::FileReader(std::string filename) +00822 { +00823 file_cache c; +00824 readfile(c,filename.c_str()); +00825 this->fc = c; +00826 } +00827 +00828 FileReader::FileReader() +00829 { +00830 } +00831 +00832 void FileReader::LoadFile(std::string filename) +00833 { +00834 file_cache c; +00835 readfile(c,filename.c_str()); +00836 this->fc = c; +00837 } 00838 -00839 FileReader::~FileReader() -00840 { -00841 } -00842 -00843 bool FileReader::Exists() -00844 { -00845 if (fc.size() == 0) -00846 { -00847 return(false); -00848 } -00849 else -00850 { -00851 return(true); -00852 } -00853 } -00854 -00855 std::string FileReader::GetLine(int x) -00856 { -00857 if ((x<0) || (x>fc.size())) -00858 return ""; -00859 return fc[x]; -00860 } -00861 -00862 int FileReader::FileSize() -00863 { -00864 return fc.size(); -00865 } -00866 +00839 +00840 FileReader::~FileReader() +00841 { +00842 } +00843 +00844 bool FileReader::Exists() +00845 { +00846 if (fc.size() == 0) +00847 { +00848 return(false); +00849 } +00850 else +00851 { +00852 return(true); +00853 } +00854 } +00855 +00856 std::string FileReader::GetLine(int x) +00857 { +00858 if ((x<0) || (x>fc.size())) +00859 return ""; +00860 return fc[x]; +00861 } +00862 +00863 int FileReader::FileSize() +00864 { +00865 return fc.size(); +00866 } 00867 -00868 std::vector<Module*> modules(255); -00869 std::vector<ircd_module*> factory(255); -00870 -00871 int MODCOUNT = -1; -00872 +00868 +00869 std::vector<Module*> modules(255); +00870 std::vector<ircd_module*> factory(255); +00871 +00872 int MODCOUNT = -1; 00873 -

    Generated on Wed Apr 13 12:32:16 2005 for InspIRCd by +00874 +

    Generated on Wed Apr 13 13:06:54 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/modules_8cpp.html b/docs/module-doc/modules_8cpp.html index 4846385fe..b747ffdf1 100644 --- a/docs/module-doc/modules_8cpp.html +++ b/docs/module-doc/modules_8cpp.html @@ -416,7 +416,7 @@ Definition at line 275

    References EMode, and ModeDefined().

    -Referenced by Server::AddExtendedListMode(), and Server::AddExtendedMode(). +Referenced by Server::AddExtendedListMode(), and Server::AddExtendedMode().

    00276 {
     00277         if (ModeDefined(modechar,type)) {
    @@ -764,7 +764,7 @@ Definition at line 285
     

    References EMode, ExtModeListIter, and MT_CHANNEL.

    -Referenced by Server::AddExtendedListMode(). +Referenced by Server::AddExtendedListMode().

    00286 {
     00287         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
    @@ -977,7 +977,7 @@ Definition at line 180
     

    Definition at line 179 of file modules.cpp.

    -Referenced by Server::GetUsers(). +Referenced by Server::GetUsers().

    @@ -1387,7 +1387,7 @@ Definition at line 106

    -Definition at line 871 of file modules.cpp. +Definition at line 872 of file modules.cpp.

    @@ -1894,7 +1894,7 @@ Definition at line 87 o Definition at line 86 of file modules.cpp. -


    Generated on Wed Apr 13 12:32:20 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:58 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/modules_8h-source.html b/docs/module-doc/modules_8h-source.html index c76e38f02..f2e507304 100644 --- a/docs/module-doc/modules_8h-source.html +++ b/docs/module-doc/modules_8h-source.html @@ -181,156 +181,159 @@ 00369 virtual void OnLoadModule(Module* mod,std::string name); 00370 00376 virtual void OnBackgroundTimer(time_t curtime); -00377 }; -00378 -00379 -00385 class Server : public classbase -00386 { -00387 public: -00391 Server(); -00395 virtual ~Server(); -00396 -00400 virtual void SendOpers(std::string s); -00405 virtual void Log(int level, std::string s); -00410 virtual void Send(int Socket, std::string s); -00415 virtual void SendServ(int Socket, std::string s); -00420 virtual void SendFrom(int Socket, userrec* User, std::string s); -00435 virtual void SendTo(userrec* Source, userrec* Dest, std::string s); -00442 virtual void SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender); -00447 virtual bool CommonChannels(userrec* u1, userrec* u2); -00455 virtual void SendCommon(userrec* User, std::string text,bool IncludeSender); -00460 virtual void SendWallops(userrec* User, std::string text); -00461 -00465 virtual bool IsNick(std::string nick); -00469 virtual int CountUsers(chanrec* c); -00473 virtual userrec* FindNick(std::string nick); -00477 virtual chanrec* FindChannel(std::string channel); -00482 virtual std::string ChanMode(userrec* User, chanrec* Chan); -00486 virtual bool IsOnChannel(userrec* User, chanrec* Chan); -00489 virtual std::string GetServerName(); -00492 virtual std::string GetNetworkName(); -00498 virtual Admin GetAdmin(); -00517 virtual bool AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off); -00518 -00540 virtual bool AddExtendedListMode(char modechar); -00541 -00559 virtual void AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source); -00560 -00582 virtual void SendMode(char **parameters, int pcnt, userrec *user); -00583 -00596 virtual void SendToModeMask(std::string modes, int flags, std::string text); -00597 -00603 virtual chanrec* JoinUserToChannel(userrec* user, std::string cname, std::string key); -00604 -00610 virtual chanrec* PartUserFromChannel(userrec* user, std::string cname, std::string reason); -00611 -00617 virtual void ChangeUserNick(userrec* user, std::string nickname); -00618 -00629 virtual void QuitUser(userrec* user, std::string reason); -00630 -00635 virtual bool MatchText(std::string sliteral, std::string spattern); -00636 -00648 virtual void CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user); -00649 -00655 virtual void ChangeHost(userrec* user, std::string host); -00656 -00662 virtual void ChangeGECOS(userrec* user, std::string gecos); -00663 -00672 virtual bool IsUlined(std::string server); +00377 +00385 virtual void OnSendList(userrec* user, chanrec* channel, char mode); +00386 +00387 }; +00388 +00389 +00395 class Server : public classbase +00396 { +00397 public: +00401 Server(); +00405 virtual ~Server(); +00406 +00410 virtual void SendOpers(std::string s); +00415 virtual void Log(int level, std::string s); +00420 virtual void Send(int Socket, std::string s); +00425 virtual void SendServ(int Socket, std::string s); +00430 virtual void SendFrom(int Socket, userrec* User, std::string s); +00445 virtual void SendTo(userrec* Source, userrec* Dest, std::string s); +00452 virtual void SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender); +00457 virtual bool CommonChannels(userrec* u1, userrec* u2); +00465 virtual void SendCommon(userrec* User, std::string text,bool IncludeSender); +00470 virtual void SendWallops(userrec* User, std::string text); +00471 +00475 virtual bool IsNick(std::string nick); +00479 virtual int CountUsers(chanrec* c); +00483 virtual userrec* FindNick(std::string nick); +00487 virtual chanrec* FindChannel(std::string channel); +00492 virtual std::string ChanMode(userrec* User, chanrec* Chan); +00496 virtual bool IsOnChannel(userrec* User, chanrec* Chan); +00499 virtual std::string GetServerName(); +00502 virtual std::string GetNetworkName(); +00508 virtual Admin GetAdmin(); +00527 virtual bool AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off); +00528 +00550 virtual bool AddExtendedListMode(char modechar); +00551 +00569 virtual void AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source); +00570 +00592 virtual void SendMode(char **parameters, int pcnt, userrec *user); +00593 +00606 virtual void SendToModeMask(std::string modes, int flags, std::string text); +00607 +00613 virtual chanrec* JoinUserToChannel(userrec* user, std::string cname, std::string key); +00614 +00620 virtual chanrec* PartUserFromChannel(userrec* user, std::string cname, std::string reason); +00621 +00627 virtual void ChangeUserNick(userrec* user, std::string nickname); +00628 +00639 virtual void QuitUser(userrec* user, std::string reason); +00640 +00645 virtual bool MatchText(std::string sliteral, std::string spattern); +00646 +00658 virtual void CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user); +00659 +00665 virtual void ChangeHost(userrec* user, std::string host); +00666 +00672 virtual void ChangeGECOS(userrec* user, std::string gecos); 00673 -00677 virtual chanuserlist GetUsers(chanrec* chan); -00678 -00685 virtual bool UserToPseudo(userrec* user,std::string message); -00686 -00693 virtual bool PseudoToUser(userrec* alive,userrec* zombie,std::string message); -00694 -00702 virtual void AddGLine(long duration, std::string source, std::string reason, std::string hostmask); -00703 -00711 virtual void AddQLine(long duration, std::string source, std::string reason, std::string nickname); -00712 -00720 virtual void AddZLine(long duration, std::string source, std::string reason, std::string ipaddr); -00721 -00729 virtual void AddKLine(long duration, std::string source, std::string reason, std::string hostmask); -00730 -00738 virtual void AddELine(long duration, std::string source, std::string reason, std::string hostmask); -00739 -00742 virtual bool DelGLine(std::string hostmask); -00743 -00746 virtual bool DelQLine(std::string nickname); -00747 -00750 virtual bool DelZLine(std::string ipaddr); -00751 -00754 virtual bool DelKLine(std::string hostmask); -00755 -00758 virtual bool DelELine(std::string hostmask); -00759 -00765 virtual long CalcDuration(std::string duration); -00766 -00767 }; -00768 -00769 #define CONF_NOT_A_NUMBER 0x000010 -00770 #define CONF_NOT_UNSIGNED 0x000080 -00771 #define CONF_VALUE_NOT_FOUND 0x000100 -00772 #define CONF_FILE_NOT_FOUND 0x000200 -00773 -00780 class ConfigReader : public classbase -00781 { -00782 protected: -00788 std::stringstream *cache; -00789 std::stringstream *errorlog; -00792 bool readerror; -00793 long error; -00794 -00795 public: -00800 ConfigReader(); // default constructor reads ircd.conf -00804 ConfigReader(std::string filename); // read a module-specific config -00808 ~ConfigReader(); -00813 std::string ReadValue(std::string tag, std::string name, int index); -00819 bool ReadFlag(std::string tag, std::string name, int index); -00828 long ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned); -00833 long GetError(); -00840 int Enumerate(std::string tag); -00845 bool Verify(); -00852 void DumpErrors(bool bail,userrec* user); -00853 -00859 int EnumerateValues(std::string tag, int index); -00860 }; -00861 -00862 +00682 virtual bool IsUlined(std::string server); +00683 +00687 virtual chanuserlist GetUsers(chanrec* chan); +00688 +00695 virtual bool UserToPseudo(userrec* user,std::string message); +00696 +00703 virtual bool PseudoToUser(userrec* alive,userrec* zombie,std::string message); +00704 +00712 virtual void AddGLine(long duration, std::string source, std::string reason, std::string hostmask); +00713 +00721 virtual void AddQLine(long duration, std::string source, std::string reason, std::string nickname); +00722 +00730 virtual void AddZLine(long duration, std::string source, std::string reason, std::string ipaddr); +00731 +00739 virtual void AddKLine(long duration, std::string source, std::string reason, std::string hostmask); +00740 +00748 virtual void AddELine(long duration, std::string source, std::string reason, std::string hostmask); +00749 +00752 virtual bool DelGLine(std::string hostmask); +00753 +00756 virtual bool DelQLine(std::string nickname); +00757 +00760 virtual bool DelZLine(std::string ipaddr); +00761 +00764 virtual bool DelKLine(std::string hostmask); +00765 +00768 virtual bool DelELine(std::string hostmask); +00769 +00775 virtual long CalcDuration(std::string duration); +00776 +00777 }; +00778 +00779 #define CONF_NOT_A_NUMBER 0x000010 +00780 #define CONF_NOT_UNSIGNED 0x000080 +00781 #define CONF_VALUE_NOT_FOUND 0x000100 +00782 #define CONF_FILE_NOT_FOUND 0x000200 +00783 +00790 class ConfigReader : public classbase +00791 { +00792 protected: +00798 std::stringstream *cache; +00799 std::stringstream *errorlog; +00802 bool readerror; +00803 long error; +00804 +00805 public: +00810 ConfigReader(); // default constructor reads ircd.conf +00814 ConfigReader(std::string filename); // read a module-specific config +00818 ~ConfigReader(); +00823 std::string ReadValue(std::string tag, std::string name, int index); +00829 bool ReadFlag(std::string tag, std::string name, int index); +00838 long ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned); +00843 long GetError(); +00850 int Enumerate(std::string tag); +00855 bool Verify(); +00862 void DumpErrors(bool bail,userrec* user); 00863 -00869 class FileReader : public classbase -00870 { -00871 file_cache fc; -00872 public: -00877 FileReader(); -00878 -00884 FileReader(std::string filename); -00885 -00889 ~FileReader(); -00890 -00896 void LoadFile(std::string filename); -00897 -00901 bool Exists(); -00902 -00907 std::string GetLine(int x); -00908 -00914 int FileSize(); -00915 }; -00916 -00917 -00924 class ModuleFactory : public classbase -00925 { -00926 public: -00927 ModuleFactory() { } -00928 virtual ~ModuleFactory() { } -00933 virtual Module * CreateModule() = 0; -00934 }; -00935 -00936 -00937 typedef DLLFactory<ModuleFactory> ircd_module; -00938 -00939 #endif -

    Generated on Wed Apr 13 12:32:17 2005 for InspIRCd by +00869 int EnumerateValues(std::string tag, int index); +00870 }; +00871 +00872 +00873 +00879 class FileReader : public classbase +00880 { +00881 file_cache fc; +00882 public: +00887 FileReader(); +00888 +00894 FileReader(std::string filename); +00895 +00899 ~FileReader(); +00900 +00906 void LoadFile(std::string filename); +00907 +00911 bool Exists(); +00912 +00917 std::string GetLine(int x); +00918 +00924 int FileSize(); +00925 }; +00926 +00927 +00934 class ModuleFactory : public classbase +00935 { +00936 public: +00937 ModuleFactory() { } +00938 virtual ~ModuleFactory() { } +00943 virtual Module * CreateModule() = 0; +00944 }; +00945 +00946 +00947 typedef DLLFactory<ModuleFactory> ircd_module; +00948 +00949 #endif +

    Generated on Wed Apr 13 13:06:54 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/modules_8h.html b/docs/module-doc/modules_8h.html index eba1650c4..df15e8431 100644 --- a/docs/module-doc/modules_8h.html +++ b/docs/module-doc/modules_8h.html @@ -429,9 +429,9 @@ Definition at line 38 of

    -Definition at line 772 of file modules.h. +Definition at line 782 of file modules.h.

    -Referenced by ConfigReader::ConfigReader(). +Referenced by ConfigReader::ConfigReader().

    @@ -455,9 +455,9 @@ Referenced by ConfigReader:

    -Definition at line 769 of file modules.h. +Definition at line 779 of file modules.h.

    -Referenced by ConfigReader::ReadInteger(). +Referenced by ConfigReader::ReadInteger().

    @@ -481,9 +481,9 @@ Referenced by ConfigReader:

    -Definition at line 770 of file modules.h. +Definition at line 780 of file modules.h.

    -Referenced by ConfigReader::ReadInteger(). +Referenced by ConfigReader::ReadInteger().

    @@ -507,9 +507,9 @@ Referenced by ConfigReader:

    -Definition at line 771 of file modules.h. +Definition at line 781 of file modules.h.

    -Referenced by ConfigReader::ReadFlag(), ConfigReader::ReadInteger(), and ConfigReader::ReadValue(). +Referenced by ConfigReader::ReadFlag(), ConfigReader::ReadInteger(), and ConfigReader::ReadValue().

    @@ -535,7 +535,7 @@ Referenced by ConfigReader:

    Definition at line 23 of file modules.h.

    -Referenced by Server::AddExtendedMode(), userrec::HasPermission(), chanrec::IsCustomModeSet(), ModeDefined(), ModeDefinedOper(), ModeIsListMode(), userrec::RemoveInvite(), chanrec::SetCustomMode(), and chanrec::SetCustomModeParam(). +Referenced by Server::AddExtendedMode(), userrec::HasPermission(), chanrec::IsCustomModeSet(), ModeDefined(), ModeDefinedOper(), ModeIsListMode(), userrec::RemoveInvite(), chanrec::SetCustomMode(), and chanrec::SetCustomModeParam().

    @@ -585,7 +585,7 @@ Definition at line 25 of

    Definition at line 99 of file modules.h.

    -Referenced by Server::PseudoToUser(), and Server::UserToPseudo(). +Referenced by Server::PseudoToUser(), and Server::UserToPseudo().

    @@ -673,7 +673,7 @@ Definition at line 87 of

    Definition at line 31 of file modules.h.

    -Referenced by Server::AddExtendedListMode(), and ModeMakeList(). +Referenced by Server::AddExtendedListMode(), and ModeMakeList().

    @@ -699,7 +699,7 @@ Referenced by Server::AddEx

    Definition at line 32 of file modules.h.

    -Referenced by Server::AddExtendedMode(). +Referenced by Server::AddExtendedMode().

    @@ -725,7 +725,7 @@ Referenced by Server::AddEx

    Definition at line 33 of file modules.h.

    -Referenced by Server::AddExtendedMode(). +Referenced by Server::AddExtendedMode().

    @@ -924,7 +924,7 @@ Holds a list of users in a channel.

    Definition at line 72 of file modules.h.

    -Referenced by Server::GetUsers(). +Referenced by Server::GetUsers().

    @@ -952,7 +952,7 @@ Low level definition of a FileReader Definition at line 67 of file modules.h.

    -Referenced by FileReader::FileReader(), and FileReader::LoadFile(). +Referenced by FileReader::FileReader(), and FileReader::LoadFile().

    @@ -976,7 +976,7 @@ Referenced by FileReader::F

    -Definition at line 937 of file modules.h. +Definition at line 947 of file modules.h.

    @@ -1061,7 +1061,7 @@ Referenced by Module::OnCha

    -Referenced by Server::AddCommand(). +Referenced by Server::AddCommand().

    @@ -1107,10 +1107,10 @@ Referenced by Server::AddCo

    -Referenced by Server::SendMode(). +Referenced by Server::SendMode(). -


    Generated on Wed Apr 13 12:32:20 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:58 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/namespacenspace.html b/docs/module-doc/namespacenspace.html index cce007ea4..440f1e4bc 100644 --- a/docs/module-doc/namespacenspace.html +++ b/docs/module-doc/namespacenspace.html @@ -15,7 +15,7 @@ struct  nspace.hash< string > -
    Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/namespaces.html b/docs/module-doc/namespaces.html index 061c40343..15091e34a 100644 --- a/docs/module-doc/namespaces.html +++ b/docs/module-doc/namespaces.html @@ -9,7 +9,7 @@ nspace std -
    Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/namespacestd.html b/docs/module-doc/namespacestd.html index 7fed133d1..d7985e66c 100644 --- a/docs/module-doc/namespacestd.html +++ b/docs/module-doc/namespacestd.html @@ -10,7 +10,7 @@
    -
    Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:11 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/servers_8cpp-source.html b/docs/module-doc/servers_8cpp-source.html index c7d1cef6e..bb6b4af3b 100644 --- a/docs/module-doc/servers_8cpp-source.html +++ b/docs/module-doc/servers_8cpp-source.html @@ -63,7 +63,7 @@ 00056 strlcpy(nickserv,"",NICKMAX); 00057 } 00058 -

    Generated on Wed Apr 13 12:32:17 2005 for InspIRCd by +

    Generated on Wed Apr 13 13:06:54 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/servers_8cpp.html b/docs/module-doc/servers_8cpp.html index 73bad4a4f..ac04da4a2 100644 --- a/docs/module-doc/servers_8cpp.html +++ b/docs/module-doc/servers_8cpp.html @@ -44,7 +44,7 @@ Definition at line 24 of file servers.cpp. -
    Generated on Wed Apr 13 12:32:20 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:58 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/servers_8h-source.html b/docs/module-doc/servers_8h-source.html index 17d1bd188..61f4383d1 100644 --- a/docs/module-doc/servers_8h-source.html +++ b/docs/module-doc/servers_8h-source.html @@ -61,7 +61,7 @@ 00082 00083 #endif 00084 -

    Generated on Wed Apr 13 12:32:17 2005 for InspIRCd by +

    Generated on Wed Apr 13 13:06:54 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/servers_8h.html b/docs/module-doc/servers_8h.html index c32acb1aa..d55f0f7f3 100644 --- a/docs/module-doc/servers_8h.html +++ b/docs/module-doc/servers_8h.html @@ -72,7 +72,7 @@ Definition at line 25 of Definition at line 26 of file servers.h. -
    Generated on Wed Apr 13 12:32:20 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:58 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structInAddr__HashComp-members.html b/docs/module-doc/structInAddr__HashComp-members.html index 0fc06479c..44fcc27d9 100644 --- a/docs/module-doc/structInAddr__HashComp-members.html +++ b/docs/module-doc/structInAddr__HashComp-members.html @@ -7,7 +7,7 @@

    InAddr_HashComp Member List

    This is the complete list of members for InAddr_HashComp, including all inherited members. -
    operator()(const in_addr &s1, const in_addr &s2) constInAddr_HashComp [inline]

    Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structInAddr__HashComp.html b/docs/module-doc/structInAddr__HashComp.html index 637339c43..bf29a6572 100644 --- a/docs/module-doc/structInAddr__HashComp.html +++ b/docs/module-doc/structInAddr__HashComp.html @@ -65,7 +65,7 @@ Definition at line 159
    The documentation for this struct was generated from the following file: -
    Generated on Wed Apr 13 12:32:25 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:04 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structStrHashComp-members.html b/docs/module-doc/structStrHashComp-members.html index cc0ad3e17..09a2d1bdd 100644 --- a/docs/module-doc/structStrHashComp-members.html +++ b/docs/module-doc/structStrHashComp-members.html @@ -7,7 +7,7 @@

    StrHashComp Member List

    This is the complete list of members for StrHashComp, including all inherited members. -
    operator()(const string &s1, const string &s2) constStrHashComp [inline]

    Generated on Wed Apr 13 12:32:29 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:09 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structStrHashComp.html b/docs/module-doc/structStrHashComp.html index cc30a8e8f..34affe75e 100644 --- a/docs/module-doc/structStrHashComp.html +++ b/docs/module-doc/structStrHashComp.html @@ -62,7 +62,7 @@ Definition at line 146
    The documentation for this struct was generated from the following file: -
    Generated on Wed Apr 13 12:32:29 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:09 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structdns__ip4list-members.html b/docs/module-doc/structdns__ip4list-members.html index 81809b1a1..34db54b45 100644 --- a/docs/module-doc/structdns__ip4list-members.html +++ b/docs/module-doc/structdns__ip4list-members.html @@ -8,7 +8,7 @@

    dns_ip4list Member List

    This is the complete list of members for dns_ip4list, including all inherited members. -
    ipdns_ip4list
    nextdns_ip4list

    Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:03 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structdns__ip4list.html b/docs/module-doc/structdns__ip4list.html index 70e2a350b..1de9fc20b 100644 --- a/docs/module-doc/structdns__ip4list.html +++ b/docs/module-doc/structdns__ip4list.html @@ -66,7 +66,7 @@ Definition at line 28 of file
    The documentation for this struct was generated from the following file: -
    Generated on Wed Apr 13 12:32:24 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:03 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01in__addr_01_4-members.html b/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01in__addr_01_4-members.html index 41b47ce4d..c98697612 100644 --- a/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01in__addr_01_4-members.html +++ b/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01in__addr_01_4-members.html @@ -7,7 +7,7 @@

    nspace::hash< in_addr > Member List

    This is the complete list of members for nspace::hash< in_addr >, including all inherited members. -
    operator()(const struct in_addr &a) constnspace::hash< in_addr > [inline]

    Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:11 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01in__addr_01_4.html b/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01in__addr_01_4.html index 8a1693b53..0dd5fe614 100644 --- a/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01in__addr_01_4.html +++ b/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01in__addr_01_4.html @@ -55,7 +55,7 @@ Definition at line 119
    The documentation for this struct was generated from the following file: -
    Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:10 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01string_01_4-members.html b/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01string_01_4-members.html index e89dc440c..927815f5b 100644 --- a/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01string_01_4-members.html +++ b/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01string_01_4-members.html @@ -7,7 +7,7 @@

    nspace::hash< string > Member List

    This is the complete list of members for nspace::hash< string >, including all inherited members. -
    operator()(const string &s) constnspace::hash< string > [inline]

    Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:11 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01string_01_4.html b/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01string_01_4.html index e06757b04..10bdd4af6 100644 --- a/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01string_01_4.html +++ b/docs/module-doc/structnspace_1_1nspace_1_1hash_3_01string_01_4.html @@ -57,7 +57,7 @@ Definition at line 132
    The documentation for this struct was generated from the following file: -
    Generated on Wed Apr 13 12:32:30 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:07:11 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/users_8cpp-source.html b/docs/module-doc/users_8cpp-source.html index 0116e9f8e..06dfc91c3 100644 --- a/docs/module-doc/users_8cpp-source.html +++ b/docs/module-doc/users_8cpp-source.html @@ -171,7 +171,7 @@ 00164 } 00165 00166 -

    Generated on Wed Apr 13 12:32:17 2005 for InspIRCd by +

    Generated on Wed Apr 13 13:06:55 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/users_8cpp.html b/docs/module-doc/users_8cpp.html index e2fa657c5..01afb703b 100644 --- a/docs/module-doc/users_8cpp.html +++ b/docs/module-doc/users_8cpp.html @@ -70,7 +70,7 @@ Definition at line 24 of Definition at line 26 of file users.cpp. -
    Generated on Wed Apr 13 12:32:20 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:58 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/users_8h-source.html b/docs/module-doc/users_8h-source.html index 8bed30b84..8c3382e57 100644 --- a/docs/module-doc/users_8h-source.html +++ b/docs/module-doc/users_8h-source.html @@ -126,7 +126,7 @@ 00208 00209 00210 #endif -

    Generated on Wed Apr 13 12:32:17 2005 for InspIRCd by +

    Generated on Wed Apr 13 13:06:55 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/users_8h.html b/docs/module-doc/users_8h.html index 38d7203c9..1f6e74ff9 100644 --- a/docs/module-doc/users_8h.html +++ b/docs/module-doc/users_8h.html @@ -243,7 +243,7 @@ Holds a complete list of all channels to which a user has been invited and has n Definition at line 79 of file users.h. -
    Generated on Wed Apr 13 12:32:20 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:59 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/xline_8h-source.html b/docs/module-doc/xline_8h-source.html index 5407646ab..cae4e0a91 100644 --- a/docs/module-doc/xline_8h-source.html +++ b/docs/module-doc/xline_8h-source.html @@ -123,7 +123,7 @@ 00157 void sync_xlines(serverrec* serv, char* tcp_host); 00158 00159 #endif -

    Generated on Wed Apr 13 12:32:17 2005 for InspIRCd by +

    Generated on Wed Apr 13 13:06:55 2005 for InspIRCd by doxygen 1.3.3
    diff --git a/docs/module-doc/xline_8h.html b/docs/module-doc/xline_8h.html index 3b8a8d401..3427e8c2e 100644 --- a/docs/module-doc/xline_8h.html +++ b/docs/module-doc/xline_8h.html @@ -145,7 +145,7 @@

    -Referenced by Server::AddELine(). +Referenced by Server::AddELine().

    @@ -197,7 +197,7 @@ Referenced by Server::AddEL

    -Referenced by Server::AddGLine(). +Referenced by Server::AddGLine().

    @@ -249,7 +249,7 @@ Referenced by Server::AddGL

    -Referenced by Server::AddKLine(). +Referenced by Server::AddKLine().

    @@ -301,7 +301,7 @@ Referenced by Server::AddKL

    -Referenced by Server::AddQLine(). +Referenced by Server::AddQLine().

    @@ -353,7 +353,7 @@ Referenced by Server::AddQL

    -Referenced by Server::AddZLine(). +Referenced by Server::AddZLine().

    @@ -412,7 +412,7 @@ Referenced by Server::AddZL

    -Referenced by Server::DelELine(). +Referenced by Server::DelELine().

    @@ -443,7 +443,7 @@ Referenced by Server::DelEL

    -Referenced by Server::DelGLine(). +Referenced by Server::DelGLine().

    @@ -474,7 +474,7 @@ Referenced by Server::DelGL

    -Referenced by Server::DelKLine(). +Referenced by Server::DelKLine().

    @@ -505,7 +505,7 @@ Referenced by Server::DelKL

    -Referenced by Server::DelQLine(). +Referenced by Server::DelQLine().

    @@ -536,7 +536,7 @@ Referenced by Server::DelQL

    -Referenced by Server::DelZLine(). +Referenced by Server::DelZLine().

    @@ -1095,7 +1095,7 @@ Referenced by Server::DelZL -


    Generated on Wed Apr 13 12:32:20 2005 for InspIRCd by +
    Generated on Wed Apr 13 13:06:59 2005 for InspIRCd by doxygen 1.3.3