mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 18:49:03 -04:00
Changed parameters of OnPacketTransmit and OnPacketReceive to be much more useful
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1024 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
237766c845
commit
3d7312f8af
@ -1,4 +1,4 @@
|
||||
.TH "Admin" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "Admin" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "BanItem" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "BanItem" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ConfigReader" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ConfigReader" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
@ -84,7 +84,7 @@ 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 685 of file modules.h.
|
||||
Definition at line 683 of file modules.h.
|
||||
.SH "Constructor & Destructor Documentation"
|
||||
.PP
|
||||
.SS "ConfigReader::ConfigReader ()"
|
||||
@ -301,22 +301,22 @@ References readerror.
|
||||
.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 693 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 691 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 698 of file modules.h.
|
||||
Definition at line 696 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 694 of file modules.h.
|
||||
Definition at line 692 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 697 of file modules.h.
|
||||
Used to store errors. Definition at line 695 of file modules.h.
|
||||
.PP
|
||||
Referenced by ConfigReader(), and Verify().
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ConnectClass" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ConnectClass" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
@ -39,6 +39,10 @@ Inherits \fBclassbase\fP.
|
||||
.br
|
||||
.RI "\fIHost mask for this line. \fP"
|
||||
.ti -1c
|
||||
.RI "int \fBpingtime\fP"
|
||||
.br
|
||||
.RI "\fINumber of seconds between pings for this line. \fP"
|
||||
.ti -1c
|
||||
.RI "char \fBpass\fP [MAXBUF]"
|
||||
.br
|
||||
.RI "\fI(Optional) Password for this line \fP"
|
||||
@ -50,17 +54,18 @@ Holds information relevent to <connect allow> and <connect deny> tags in the con
|
||||
.PP
|
||||
.SS "ConnectClass::ConnectClass ()\fC [inline]\fP"
|
||||
.PP
|
||||
Definition at line 64 of file users.h.
|
||||
Definition at line 67 of file users.h.
|
||||
.PP
|
||||
References flood, host, pass, and registration_timeout.
|
||||
References flood, host, pass, pingtime, and registration_timeout.
|
||||
.PP
|
||||
.nf
|
||||
65 {
|
||||
66 registration_timeout = 0;
|
||||
67 flood = 0;
|
||||
68 strlcpy(host,'',MAXBUF);
|
||||
69 strlcpy(pass,'',MAXBUF);
|
||||
70 }
|
||||
68 {
|
||||
69 registration_timeout = 0;
|
||||
70 flood = 0;
|
||||
71 pingtime = 0;
|
||||
72 strlcpy(host,'',MAXBUF);
|
||||
73 strlcpy(pass,'',MAXBUF);
|
||||
74 }
|
||||
.fi
|
||||
.SH "Member Data Documentation"
|
||||
.PP
|
||||
@ -76,7 +81,12 @@ Host mask for this line. Definition at line 59 of file users.h.
|
||||
Referenced by ConnectClass().
|
||||
.SS "char \fBConnectClass::pass\fP[MAXBUF]"
|
||||
.PP
|
||||
(Optional) Password for this line Definition at line 62 of file users.h.
|
||||
(Optional) Password for this line Definition at line 65 of file users.h.
|
||||
.PP
|
||||
Referenced by ConnectClass().
|
||||
.SS "int \fBConnectClass::pingtime\fP"
|
||||
.PP
|
||||
Number of seconds between pings for this line. Definition at line 62 of file users.h.
|
||||
.PP
|
||||
Referenced by ConnectClass().
|
||||
.SS "int \fBConnectClass::registration_timeout\fP"
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "DNS" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "DNS" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ELine" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ELine" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ExemptItem" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ExemptItem" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ExtMode" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ExtMode" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "Extensible" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "Extensible" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "FileReader" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "FileReader" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
@ -57,7 +57,7 @@ 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 774 of file modules.h.
|
||||
Definition at line 772 of file modules.h.
|
||||
.SH "Constructor & Destructor Documentation"
|
||||
.PP
|
||||
.SS "FileReader::FileReader ()"
|
||||
@ -150,7 +150,7 @@ References fc, and file_cache.
|
||||
.PP
|
||||
.SS "\fBfile_cache\fP \fBFileReader::fc\fP\fC [private]\fP"
|
||||
.PP
|
||||
Definition at line 776 of file modules.h.
|
||||
Definition at line 774 of file modules.h.
|
||||
.PP
|
||||
Referenced by Exists(), FileReader(), FileSize(), GetLine(), and LoadFile().
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "GLine" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "GLine" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "HostItem" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "HostItem" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "InAddr_HashComp" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "InAddr_HashComp" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "InviteItem" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "InviteItem" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "Invited" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "Invited" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "KLine" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "KLine" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ModeParameter" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ModeParameter" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "Module" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "Module" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
@ -44,11 +44,11 @@ Inherits \fBclassbase\fP.
|
||||
.br
|
||||
.RI "\fICalled when a user parts a channel. \fP"
|
||||
.ti -1c
|
||||
.RI "virtual void \fBOnPacketTransmit\fP (char *p)"
|
||||
.RI "virtual void \fBOnPacketTransmit\fP (std::string &data, std::string serv)"
|
||||
.br
|
||||
.RI "\fICalled before a packet is transmitted across the irc network between two irc servers. \fP"
|
||||
.ti -1c
|
||||
.RI "virtual void \fBOnPacketReceive\fP (char *p)"
|
||||
.RI "virtual void \fBOnPacketReceive\fP (std::string &data, std::string serv)"
|
||||
.br
|
||||
.RI "\fICalled after a packet is received from another irc server. \fP"
|
||||
.ti -1c
|
||||
@ -244,16 +244,16 @@ Called whenever a user opers locally. The userrec will contain the oper mode 'o'
|
||||
.nf
|
||||
319 { };
|
||||
.fi
|
||||
.SS "void Module::OnPacketReceive (char * p)\fC [virtual]\fP"
|
||||
.SS "void Module::OnPacketReceive (std::string & data, std::string serv)\fC [virtual]\fP"
|
||||
.PP
|
||||
Called after a packet is received from another irc server. The packet is represented as a char*, as it should be regarded as a buffer, and not a string. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called immediately after the packet is received but before any other operations with the core of the ircd.Definition at line 313 of file modules.cpp.
|
||||
Called after a packet is received from another irc server. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called immediately after the packet is received but before any other operations with the core of the ircd.Definition at line 313 of file modules.cpp.
|
||||
.PP
|
||||
.nf
|
||||
313 { }
|
||||
.fi
|
||||
.SS "void Module::OnPacketTransmit (char * p)\fC [virtual]\fP"
|
||||
.SS "void Module::OnPacketTransmit (std::string & data, std::string serv)\fC [virtual]\fP"
|
||||
.PP
|
||||
Called before a packet is transmitted across the irc network between two irc servers. The packet is represented as a char*, as it should be regarded as a buffer, and not a string. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called before ANY other operations within the ircd core program.Definition at line 312 of file modules.cpp.
|
||||
Called before a packet is transmitted across the irc network between two irc servers. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called before ANY other operations within the ircd core program.Definition at line 312 of file modules.cpp.
|
||||
.PP
|
||||
.nf
|
||||
312 { }
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ModuleFactory" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ModuleFactory" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
@ -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 829 of file modules.h.
|
||||
Definition at line 827 of file modules.h.
|
||||
.SH "Constructor & Destructor Documentation"
|
||||
.PP
|
||||
.SS "ModuleFactory::ModuleFactory ()\fC [inline]\fP"
|
||||
.PP
|
||||
Definition at line 832 of file modules.h.
|
||||
Definition at line 830 of file modules.h.
|
||||
.PP
|
||||
.nf
|
||||
832 { }
|
||||
830 { }
|
||||
.fi
|
||||
.SS "virtual ModuleFactory::~\fBModuleFactory\fP ()\fC [inline, virtual]\fP"
|
||||
.PP
|
||||
Definition at line 833 of file modules.h.
|
||||
Definition at line 831 of file modules.h.
|
||||
.PP
|
||||
.nf
|
||||
833 { }
|
||||
831 { }
|
||||
.fi
|
||||
.SH "Member Function Documentation"
|
||||
.PP
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "QLine" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "QLine" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "Server" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "Server" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
@ -166,7 +166,7 @@ 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 378 of file modules.h.
|
||||
Definition at line 376 of file modules.h.
|
||||
.SH "Constructor & Destructor Documentation"
|
||||
.PP
|
||||
.SS "Server::Server ()"
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "StrHashComp" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "StrHashComp" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "Version" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "Version" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "XLine" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "XLine" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ZLine" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ZLine" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "base.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "base.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "channels.cpp" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "channels.cpp" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "channels.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "channels.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "chanrec" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "chanrec" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "classbase" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "classbase" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "command_t" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "command_t" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "commands.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "commands.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "connection" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "connection" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "connection.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "connection.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ctables.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ctables.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "dns.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "dns.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "dns_ip4list" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "dns_ip4list" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ircd_connector" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ircd_connector" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "message.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "message.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "mode.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "mode.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "modules.cpp" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "modules.cpp" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "modules.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "modules.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
@ -215,22 +215,22 @@ Referenced by Module::OnAccessCheck().
|
||||
Definition at line 38 of file modules.h.
|
||||
.SS "#define CONF_FILE_NOT_FOUND 0x000200"
|
||||
.PP
|
||||
Definition at line 677 of file modules.h.
|
||||
Definition at line 675 of file modules.h.
|
||||
.PP
|
||||
Referenced by ConfigReader::ConfigReader().
|
||||
.SS "#define CONF_NOT_A_NUMBER 0x000010"
|
||||
.PP
|
||||
Definition at line 674 of file modules.h.
|
||||
Definition at line 672 of file modules.h.
|
||||
.PP
|
||||
Referenced by ConfigReader::ReadInteger().
|
||||
.SS "#define CONF_NOT_UNSIGNED 0x000080"
|
||||
.PP
|
||||
Definition at line 675 of file modules.h.
|
||||
Definition at line 673 of file modules.h.
|
||||
.PP
|
||||
Referenced by ConfigReader::ReadInteger().
|
||||
.SS "#define CONF_VALUE_NOT_FOUND 0x000100"
|
||||
.PP
|
||||
Definition at line 676 of file modules.h.
|
||||
Definition at line 674 of file modules.h.
|
||||
.PP
|
||||
Referenced by ConfigReader::ReadFlag(), ConfigReader::ReadInteger(), and ConfigReader::ReadValue().
|
||||
.SS "#define DEBUG 10"
|
||||
@ -311,7 +311,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 842 of file modules.h.
|
||||
Definition at line 840 of file modules.h.
|
||||
.SS "typedef \fBfile_cache\fP \fBstring_list\fP"
|
||||
.PP
|
||||
Definition at line 68 of file modules.h.
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "nspace" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "nspace" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "nspace::nspace::hash< in_addr >" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "nspace::nspace::hash< in_addr >" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "nspace::nspace::hash< string >" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "nspace::nspace::hash< string >" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "packet" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "packet" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "serverrec" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "serverrec" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "servers.cpp" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "servers.cpp" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "servers.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "servers.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "std" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "std" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "ucrec" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "ucrec" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "userrec" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "userrec" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
@ -100,6 +100,10 @@ Inherits \fBconnection\fP.
|
||||
.RI "bool \fBdns_done\fP"
|
||||
.br
|
||||
.RI "\fITrue when \fBDNS\fP lookups are completed. \fP"
|
||||
.ti -1c
|
||||
.RI "unsigned long \fBpingmax\fP"
|
||||
.br
|
||||
.RI "\fINumber of seconds between PINGs for this user (set from <connect:allow> tag. \fP"
|
||||
.in -1c
|
||||
.SS "Private Attributes"
|
||||
|
||||
@ -115,7 +119,7 @@ Holds all information about a user This class stores all information about a use
|
||||
|
||||
Everything about a connection is stored here primarily, from the user's socket ID (file descriptor) through to the user's nickname and hostname. Use the Find method of the server class to locate a specific user by nickname.
|
||||
.PP
|
||||
Definition at line 89 of file users.h.
|
||||
Definition at line 93 of file users.h.
|
||||
.SH "Constructor & Destructor Documentation"
|
||||
.PP
|
||||
.SS "userrec::userrec ()"
|
||||
@ -154,10 +158,10 @@ References awaymsg, connection::bytes_in, connection::bytes_out, ucrec::channel,
|
||||
.fi
|
||||
.SS "virtual userrec::~\fBuserrec\fP ()\fC [inline, virtual]\fP"
|
||||
.PP
|
||||
Definition at line 164 of file users.h.
|
||||
Definition at line 172 of file users.h.
|
||||
.PP
|
||||
.nf
|
||||
164 { }
|
||||
172 { }
|
||||
.fi
|
||||
.SH "Member Function Documentation"
|
||||
.PP
|
||||
@ -308,72 +312,75 @@ References DEBUG, and invites.
|
||||
.PP
|
||||
.SS "char \fBuserrec::awaymsg\fP[512]"
|
||||
.PP
|
||||
The user's away message. If this string is empty, the user is not marked as away.Definition at line 132 of file users.h.
|
||||
The user's away message. If this string is empty, the user is not marked as away.Definition at line 136 of file users.h.
|
||||
.PP
|
||||
Referenced by userrec().
|
||||
.SS "\fBucrec\fP \fBuserrec::chans\fP[MAXCHANS]"
|
||||
.PP
|
||||
Definition at line 123 of file users.h.
|
||||
Definition at line 127 of file users.h.
|
||||
.PP
|
||||
Referenced by userrec().
|
||||
.SS "char \fBuserrec::dhost\fP[256]"
|
||||
.PP
|
||||
The host displayed to non-opers (used for cloaking etc). This usually matches the value of \fBuserrec::host\fP.Definition at line 111 of file users.h.
|
||||
The host displayed to non-opers (used for cloaking etc). This usually matches the value of \fBuserrec::host\fP.Definition at line 115 of file users.h.
|
||||
.PP
|
||||
Referenced by GetFullHost(), and userrec().
|
||||
.SS "bool \fBuserrec::dns_done\fP"
|
||||
.PP
|
||||
True when \fBDNS\fP lookups are completed. Definition at line 160 of file users.h.
|
||||
True when \fBDNS\fP lookups are completed. Definition at line 164 of file users.h.
|
||||
.PP
|
||||
Referenced by userrec().
|
||||
.SS "int \fBuserrec::flood\fP"
|
||||
.PP
|
||||
Number of lines the user can place into the buffer (up to the global NetBufferSize bytes) before they are disconnected for excess flood. Definition at line 143 of file users.h.
|
||||
Number of lines the user can place into the buffer (up to the global NetBufferSize bytes) before they are disconnected for excess flood. Definition at line 147 of file users.h.
|
||||
.PP
|
||||
Referenced by userrec().
|
||||
.SS "char \fBuserrec::fullname\fP[128]"
|
||||
.PP
|
||||
The users full name. Definition at line 115 of file users.h.
|
||||
The users full name. Definition at line 119 of file users.h.
|
||||
.PP
|
||||
Referenced by userrec().
|
||||
.SS "char \fBuserrec::ident\fP[64]"
|
||||
.PP
|
||||
The users ident reply. Definition at line 106 of file users.h.
|
||||
The users ident reply. Definition at line 110 of file users.h.
|
||||
.PP
|
||||
Referenced by GetFullHost(), GetFullRealHost(), and userrec().
|
||||
.SS "\fBInvitedList\fP \fBuserrec::invites\fP\fC [private]\fP"
|
||||
.PP
|
||||
A list of channels the user has a pending invite to. Definition at line 95 of file users.h.
|
||||
A list of channels the user has a pending invite to. Definition at line 99 of file users.h.
|
||||
.PP
|
||||
Referenced by InviteTo(), IsInvited(), RemoveInvite(), and userrec().
|
||||
.SS "char \fBuserrec::modes\fP[MAXBUF]"
|
||||
.PP
|
||||
The user's mode string. This may contain any of the following RFC characters: o, w, s, i Your module may define other mode characters as it sees fit.Definition at line 121 of file users.h.
|
||||
The user's mode string. This may contain any of the following RFC characters: o, w, s, i Your module may define other mode characters as it sees fit.Definition at line 125 of file users.h.
|
||||
.PP
|
||||
Referenced by userrec().
|
||||
.SS "char \fBuserrec::nick\fP[NICKMAX]"
|
||||
.PP
|
||||
The users nickname. An invalid nickname indicates an unregistered connection prior to the NICK command.Definition at line 102 of file users.h.
|
||||
The users nickname. An invalid nickname indicates an unregistered connection prior to the NICK command.Definition at line 106 of file users.h.
|
||||
.PP
|
||||
Referenced by ConfigReader::DumpErrors(), GetFullHost(), GetFullRealHost(), Server::QuitUser(), and userrec().
|
||||
.SS "char \fBuserrec::oper\fP[NICKMAX]"
|
||||
.PP
|
||||
The oper type they logged in as, if they are an oper. This is used to check permissions in operclasses, so that we can say 'yay' or 'nay' to any commands they issue. The value of this is the value of a valid 'type name=' tag.Definition at line 156 of file users.h.
|
||||
The oper type they logged in as, if they are an oper. This is used to check permissions in operclasses, so that we can say 'yay' or 'nay' to any commands they issue. The value of this is the value of a valid 'type name=' tag.Definition at line 160 of file users.h.
|
||||
.PP
|
||||
Referenced by userrec().
|
||||
.SS "unsigned long \fBuserrec::pingmax\fP"
|
||||
.PP
|
||||
Number of seconds between PINGs for this user (set from <connect:allow> tag. Definition at line 168 of file users.h.
|
||||
.SS "char \fBuserrec::result\fP[256]"
|
||||
.PP
|
||||
Stores the result of the last GetFullHost or GetRealHost call. You may use this to increase the speed of use of this class.Definition at line 137 of file users.h.
|
||||
Stores the result of the last GetFullHost or GetRealHost call. You may use this to increase the speed of use of this class.Definition at line 141 of file users.h.
|
||||
.PP
|
||||
Referenced by GetFullHost(), GetFullRealHost(), and userrec().
|
||||
.SS "char \fBuserrec::server\fP[256]"
|
||||
.PP
|
||||
The server the user is connected to. Definition at line 127 of file users.h.
|
||||
The server the user is connected to. Definition at line 131 of file users.h.
|
||||
.PP
|
||||
Referenced by userrec().
|
||||
.SS "unsigned long \fBuserrec::timeout\fP"
|
||||
.PP
|
||||
Number of seconds this user is given to send USER/NICK If they do not send their details in this time limit they will be disconnected. Definition at line 149 of file users.h.
|
||||
Number of seconds this user is given to send USER/NICK If they do not send their details in this time limit they will be disconnected. Definition at line 153 of file users.h.
|
||||
.PP
|
||||
Referenced by userrec().
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "users.cpp" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "users.cpp" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "users.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "users.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
@ -91,10 +91,10 @@ Definition at line 28 of file users.h.
|
||||
.PP
|
||||
.SS "typedef std::vector<\fBConnectClass\fP> \fBClassVector\fP"
|
||||
.PP
|
||||
Holds a complete list of all allow and deny tags from the configuration file (connection classes). Definition at line 81 of file users.h.
|
||||
Holds a complete list of all allow and deny tags from the configuration file (connection classes). Definition at line 85 of file users.h.
|
||||
.SS "typedef std::vector<\fBInvited\fP> \fBInvitedList\fP"
|
||||
.PP
|
||||
Holds a complete list of all channels to which a user has been invited and has not yet joined. Definition at line 75 of file users.h.
|
||||
Holds a complete list of all channels to which a user has been invited and has not yet joined. Definition at line 79 of file users.h.
|
||||
.SH "Author"
|
||||
.PP
|
||||
Generated automatically by Doxygen for InspIRCd from the source code.
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH "xline.h" 3 "7 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.TH "xline.h" 3 "9 Apr 2005" "InspIRCd" \" -*- nroff -*-
|
||||
.ad l
|
||||
.nh
|
||||
.SH NAME
|
||||
|
@ -44,7 +44,7 @@
|
||||
<tr><td class="indexkey"><a class="el" href="classXLine.html">XLine</a></td><td class="indexvalue">XLine is the base class for ban lines such as G lines and K lines </td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZLine.html">ZLine</a></td><td class="indexvalue">ZLine class </td></tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:23 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:27 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -55,7 +55,7 @@
|
||||
00079
|
||||
00080 <span class="preprocessor">#endif</span>
|
||||
00081 <span class="preprocessor"></span>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:20 2005 for InspIRCd by
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:24 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -49,7 +49,7 @@
|
||||
Definition at line <a class="el" href="base_8h-source.html#l00025">25</a> of file <a class="el" href="base_8h-source.html">base.h</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:21 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:25 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -204,7 +204,7 @@
|
||||
00197 }
|
||||
00198 <span class="keywordflow">return</span> std::string(<span class="stringliteral">""</span>);
|
||||
00199 }
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:20 2005 for InspIRCd by
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:24 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -1068,7 +1068,7 @@ Definition at line <a class="el" href="channels_8cpp-source.html#l00084">84</a>
|
||||
Definition at line <a class="el" href="channels_8cpp-source.html#l00083">83</a> of file <a class="el" href="channels_8cpp-source.html">channels.cpp</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:21 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:25 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -139,7 +139,7 @@
|
||||
00218
|
||||
00219 <span class="preprocessor">#endif</span>
|
||||
00220 <span class="preprocessor"></span>
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:20 2005 for InspIRCd by
|
||||
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:24 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -258,7 +258,7 @@ Holds a complete invite list.
|
||||
Definition at line <a class="el" href="channels_8h-source.html#l00088">88</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:21 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:26 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -13,7 +13,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classAdmin.html#o0">Name</a></td><td><a class="el" href="classAdmin.html">Admin</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classAdmin.html#o2">Nick</a></td><td><a class="el" href="classAdmin.html">Admin</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:23 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:27 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -157,7 +157,7 @@ Definition at line <a class="el" href="modules_8h-source.html#l00124">124</a> of
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following files:<ul>
|
||||
<li><a class="el" href="modules_8h-source.html">modules.h</a><li><a class="el" href="modules_8cpp-source.html">modules.cpp</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:23 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:27 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -14,7 +14,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classHostItem.html#o0">set_time</a></td><td><a class="el" href="classHostItem.html">HostItem</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classHostItem.html#a1">~HostItem</a>()</td><td><a class="el" href="classHostItem.html">HostItem</a></td><td><code> [inline, virtual]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:23 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:27 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -22,7 +22,7 @@ A subclass of <a class="el" href="classHostItem.html">HostItem</a> designed to h
|
||||
<p>
|
||||
Definition at line <a class="el" href="channels_8h-source.html#l00045">45</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="channels_8h-source.html">channels.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:23 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:27 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -24,7 +24,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classConfigReader.html#a8">Verify</a>()</td><td><a class="el" href="classConfigReader.html">ConfigReader</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classConfigReader.html#a2">~ConfigReader</a>()</td><td><a class="el" href="classConfigReader.html">ConfigReader</a></td><td></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -67,7 +67,7 @@ It may either be instantiated with one parameter or none. Constructing the class
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00685">685</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00683">683</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ConfigReader::ConfigReader"></a><p>
|
||||
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
@ -99,7 +99,7 @@ This constructor initialises the ConfigReader class to read the inspircd.conf fi
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00579">579</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00693">cache</a>, <a class="el" href="modules_8h-source.html#l00677">CONF_FILE_NOT_FOUND</a>, <a class="el" href="modules_8h-source.html#l00698">error</a>, <a class="el" href="modules_8h-source.html#l00694">errorlog</a>, and <a class="el" href="modules_8h-source.html#l00697">readerror</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00691">cache</a>, <a class="el" href="modules_8h-source.html#l00675">CONF_FILE_NOT_FOUND</a>, <a class="el" href="modules_8h-source.html#l00696">error</a>, <a class="el" href="modules_8h-source.html#l00692">errorlog</a>, and <a class="el" href="modules_8h-source.html#l00695">readerror</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00580 {
|
||||
00581 this-><a class="code" href="classConfigReader.html#p0">cache</a> = <span class="keyword">new</span> std::stringstream(std::stringstream::in | std::stringstream::out);
|
||||
@ -143,7 +143,7 @@ This constructor initialises the ConfigReader class to read a user-specified con
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00598">598</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00693">cache</a>, <a class="el" href="modules_8h-source.html#l00677">CONF_FILE_NOT_FOUND</a>, <a class="el" href="modules_8h-source.html#l00698">error</a>, <a class="el" href="modules_8h-source.html#l00694">errorlog</a>, and <a class="el" href="modules_8h-source.html#l00697">readerror</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00691">cache</a>, <a class="el" href="modules_8h-source.html#l00675">CONF_FILE_NOT_FOUND</a>, <a class="el" href="modules_8h-source.html#l00696">error</a>, <a class="el" href="modules_8h-source.html#l00692">errorlog</a>, and <a class="el" href="modules_8h-source.html#l00695">readerror</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00599 {
|
||||
00600 this-><a class="code" href="classConfigReader.html#p0">cache</a> = <span class="keyword">new</span> std::stringstream(std::stringstream::in | std::stringstream::out);
|
||||
@ -186,7 +186,7 @@ This method destroys the ConfigReader class.
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00589">589</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00693">cache</a>, and <a class="el" href="modules_8h-source.html#l00694">errorlog</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00691">cache</a>, and <a class="el" href="modules_8h-source.html#l00692">errorlog</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00590 {
|
||||
00591 <span class="keywordflow">if</span> (this-><a class="code" href="classConfigReader.html#p0">cache</a>)
|
||||
@ -239,7 +239,7 @@ If bail is true, then the program will abort. If bail is false and user points t
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00676">676</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00694">errorlog</a>, <a class="el" href="connection_8h-source.html#l00178">connection::fd</a>, and <a class="el" href="users_8h-source.html#l00102">userrec::nick</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00692">errorlog</a>, <a class="el" href="connection_8h-source.html#l00178">connection::fd</a>, and <a class="el" href="users_8h-source.html#l00106">userrec::nick</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00677 {
|
||||
00678 <span class="keywordflow">if</span> (bail)
|
||||
@ -306,7 +306,7 @@ This method counts the number of times a tag appears in a config file, for use w
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00709">709</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00693">cache</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00691">cache</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00710 {
|
||||
00711 <span class="keywordflow">return</span> EnumConf(cache,tag.c_str());
|
||||
@ -355,7 +355,7 @@ For example if the tag was <test tag="blah" data="foo"> then this function
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00714">714</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00693">cache</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00691">cache</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00715 {
|
||||
00716 <span class="keywordflow">return</span> EnumValues(cache, tag.c_str(), index);
|
||||
@ -394,7 +394,7 @@ Valid errors can be found by looking in <a class="el" href="modules_8h.html">mod
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00669">669</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00698">error</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00696">error</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00670 {
|
||||
00671 <span class="keywordtype">long</span> olderr = this-><a class="code" href="classConfigReader.html#p3">error</a>;
|
||||
@ -451,7 +451,7 @@ This method retrieves a boolean value from the config file. Where multiple copie
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00623">623</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00693">cache</a>, <a class="el" href="modules_8h-source.html#l00676">CONF_VALUE_NOT_FOUND</a>, and <a class="el" href="modules_8h-source.html#l00698">error</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00691">cache</a>, <a class="el" href="modules_8h-source.html#l00674">CONF_VALUE_NOT_FOUND</a>, and <a class="el" href="modules_8h-source.html#l00696">error</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00624 {
|
||||
00625 <span class="keywordtype">char</span> val[MAXBUF];
|
||||
@ -524,7 +524,7 @@ This method retrieves an integer value from the config file. Where multiple copi
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00640">640</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00693">cache</a>, <a class="el" href="modules_8h-source.html#l00674">CONF_NOT_A_NUMBER</a>, <a class="el" href="modules_8h-source.html#l00675">CONF_NOT_UNSIGNED</a>, <a class="el" href="modules_8h-source.html#l00676">CONF_VALUE_NOT_FOUND</a>, and <a class="el" href="modules_8h-source.html#l00698">error</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00691">cache</a>, <a class="el" href="modules_8h-source.html#l00672">CONF_NOT_A_NUMBER</a>, <a class="el" href="modules_8h-source.html#l00673">CONF_NOT_UNSIGNED</a>, <a class="el" href="modules_8h-source.html#l00674">CONF_VALUE_NOT_FOUND</a>, and <a class="el" href="modules_8h-source.html#l00696">error</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00641 {
|
||||
00642 <span class="keywordtype">char</span> val[MAXBUF];
|
||||
@ -603,7 +603,7 @@ This method retrieves a value from the config file. Where multiple copies of the
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00607">607</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00693">cache</a>, <a class="el" href="modules_8h-source.html#l00676">CONF_VALUE_NOT_FOUND</a>, and <a class="el" href="modules_8h-source.html#l00698">error</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00691">cache</a>, <a class="el" href="modules_8h-source.html#l00674">CONF_VALUE_NOT_FOUND</a>, and <a class="el" href="modules_8h-source.html#l00696">error</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00608 {
|
||||
00609 <span class="keywordtype">char</span> val[MAXBUF];
|
||||
@ -653,7 +653,7 @@ This method is partially implemented and will only return false if the config fi
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00719">719</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00697">readerror</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00695">readerror</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00720 {
|
||||
00721 <span class="keywordflow">return</span> this-><a class="code" href="classConfigReader.html#p2">readerror</a>;
|
||||
@ -685,7 +685,7 @@ The contents of the configuration file This protected member should never be acc
|
||||
<p>
|
||||
It will contain a pointer to the configuration file data with unneeded data (such as comments) stripped from it.
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00693">693</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00691">691</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="modules_8cpp-source.html#l00579">ConfigReader()</a>, <a class="el" href="modules_8cpp-source.html#l00709">Enumerate()</a>, <a class="el" href="modules_8cpp-source.html#l00714">EnumerateValues()</a>, <a class="el" href="modules_8cpp-source.html#l00623">ReadFlag()</a>, <a class="el" href="modules_8cpp-source.html#l00640">ReadInteger()</a>, <a class="el" href="modules_8cpp-source.html#l00607">ReadValue()</a>, and <a class="el" href="modules_8cpp-source.html#l00589">~ConfigReader()</a>. </td>
|
||||
</tr>
|
||||
@ -711,7 +711,7 @@ Referenced by <a class="el" href="modules_8cpp-source.html#l00579">ConfigReader(
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00698">698</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00696">696</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="modules_8cpp-source.html#l00579">ConfigReader()</a>, <a class="el" href="modules_8cpp-source.html#l00669">GetError()</a>, <a class="el" href="modules_8cpp-source.html#l00623">ReadFlag()</a>, <a class="el" href="modules_8cpp-source.html#l00640">ReadInteger()</a>, and <a class="el" href="modules_8cpp-source.html#l00607">ReadValue()</a>. </td>
|
||||
</tr>
|
||||
@ -737,7 +737,7 @@ Referenced by <a class="el" href="modules_8cpp-source.html#l00579">ConfigReader(
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00694">694</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00692">692</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="modules_8cpp-source.html#l00579">ConfigReader()</a>, <a class="el" href="modules_8cpp-source.html#l00676">DumpErrors()</a>, and <a class="el" href="modules_8cpp-source.html#l00589">~ConfigReader()</a>. </td>
|
||||
</tr>
|
||||
@ -765,14 +765,14 @@ Used to store errors.
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00697">697</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00695">695</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="modules_8cpp-source.html#l00579">ConfigReader()</a>, and <a class="el" href="modules_8cpp-source.html#l00719">Verify()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following files:<ul>
|
||||
<li><a class="el" href="modules_8h-source.html">modules.h</a><li><a class="el" href="modules_8cpp-source.html">modules.cpp</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -11,11 +11,12 @@
|
||||
<tr class="memlist"><td><a class="el" href="classConnectClass.html#a0">ConnectClass</a>()</td><td><a class="el" href="classConnectClass.html">ConnectClass</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classConnectClass.html#o2">flood</a></td><td><a class="el" href="classConnectClass.html">ConnectClass</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classConnectClass.html#o3">host</a></td><td><a class="el" href="classConnectClass.html">ConnectClass</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classConnectClass.html#o4">pass</a></td><td><a class="el" href="classConnectClass.html">ConnectClass</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classConnectClass.html#o5">pass</a></td><td><a class="el" href="classConnectClass.html">ConnectClass</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classConnectClass.html#o4">pingtime</a></td><td><a class="el" href="classConnectClass.html">ConnectClass</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classConnectClass.html#o1">registration_timeout</a></td><td><a class="el" href="classConnectClass.html">ConnectClass</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classConnectClass.html#o0">type</a></td><td><a class="el" href="classConnectClass.html">ConnectClass</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -30,9 +30,12 @@ Inherits <a class="el" href="classclassbase.html">classbase</a>.
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>char </td><td class="memItemRight" valign=bottom><a class="el" href="classConnectClass.html#o3">host</a> [MAXBUF]</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">Host mask for this line. </em> <a href="#o3"></a><em><br><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>char </td><td class="memItemRight" valign=bottom><a class="el" href="classConnectClass.html#o4">pass</a> [MAXBUF]</td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>int </td><td class="memItemRight" valign=bottom><a class="el" href="classConnectClass.html#o4">pingtime</a></td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">(Optional) Password for this line </em> <a href="#o4"></a><em><br><br></td></tr>
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">Number of seconds between pings for this line. </em> <a href="#o4"></a><em><br><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>char </td><td class="memItemRight" valign=bottom><a class="el" href="classConnectClass.html#o5">pass</a> [MAXBUF]</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">(Optional) Password for this line </em> <a href="#o5"></a><em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
Holds information relevent to <connect allow> and <connect deny> tags in the config file.
|
||||
@ -67,16 +70,17 @@ Definition at line <a class="el" href="users_8h-source.html#l00045">45</a> of fi
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="users_8h-source.html#l00064">64</a> of file <a class="el" href="users_8h-source.html">users.h</a>.
|
||||
Definition at line <a class="el" href="users_8h-source.html#l00067">67</a> of file <a class="el" href="users_8h-source.html">users.h</a>.
|
||||
<p>
|
||||
References <a class="el" href="users_8h-source.html#l00056">flood</a>, <a class="el" href="users_8h-source.html#l00059">host</a>, <a class="el" href="users_8h-source.html#l00062">pass</a>, and <a class="el" href="users_8h-source.html#l00053">registration_timeout</a>.
|
||||
References <a class="el" href="users_8h-source.html#l00056">flood</a>, <a class="el" href="users_8h-source.html#l00059">host</a>, <a class="el" href="users_8h-source.html#l00065">pass</a>, <a class="el" href="users_8h-source.html#l00062">pingtime</a>, and <a class="el" href="users_8h-source.html#l00053">registration_timeout</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00065 {
|
||||
00066 <a class="code" href="classConnectClass.html#o1">registration_timeout</a> = 0;
|
||||
00067 <a class="code" href="classConnectClass.html#o2">flood</a> = 0;
|
||||
00068 strlcpy(host,<span class="stringliteral">""</span>,MAXBUF);
|
||||
00069 strlcpy(pass,<span class="stringliteral">""</span>,MAXBUF);
|
||||
00070 }
|
||||
<div class="fragment"><pre>00068 {
|
||||
00069 <a class="code" href="classConnectClass.html#o1">registration_timeout</a> = 0;
|
||||
00070 <a class="code" href="classConnectClass.html#o2">flood</a> = 0;
|
||||
00071 <a class="code" href="classConnectClass.html#o4">pingtime</a> = 0;
|
||||
00072 strlcpy(host,<span class="stringliteral">""</span>,MAXBUF);
|
||||
00073 strlcpy(pass,<span class="stringliteral">""</span>,MAXBUF);
|
||||
00074 }
|
||||
</pre></div> </td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -106,7 +110,7 @@ Number of lines in buffer before excess flood is triggered.
|
||||
<p>
|
||||
Definition at line <a class="el" href="users_8h-source.html#l00056">56</a> of file <a class="el" href="users_8h-source.html">users.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="users_8h-source.html#l00064">ConnectClass()</a>. </td>
|
||||
Referenced by <a class="el" href="users_8h-source.html#l00067">ConnectClass()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="o3" doxytag="ConnectClass::host"></a><p>
|
||||
@ -134,16 +138,16 @@ Host mask for this line.
|
||||
<p>
|
||||
Definition at line <a class="el" href="users_8h-source.html#l00059">59</a> of file <a class="el" href="users_8h-source.html">users.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="users_8h-source.html#l00064">ConnectClass()</a>. </td>
|
||||
Referenced by <a class="el" href="users_8h-source.html#l00067">ConnectClass()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="o4" doxytag="ConnectClass::pass"></a><p>
|
||||
<a name="o5" doxytag="ConnectClass::pass"></a><p>
|
||||
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> char <a class="el" href="classConnectClass.html#o4">ConnectClass::pass</a>[MAXBUF]
|
||||
<td class="md" nowrap valign="top"> char <a class="el" href="classConnectClass.html#o5">ConnectClass::pass</a>[MAXBUF]
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
@ -159,10 +163,38 @@ Referenced by <a class="el" href="users_8h-source.html#l00064">ConnectClass()</a
|
||||
(Optional) Password for this line
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="users_8h-source.html#l00065">65</a> of file <a class="el" href="users_8h-source.html">users.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="users_8h-source.html#l00067">ConnectClass()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="o4" doxytag="ConnectClass::pingtime"></a><p>
|
||||
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
<td class="mdRow">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int <a class="el" href="classConnectClass.html#o4">ConnectClass::pingtime</a>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing=5 cellpadding=0 border=0>
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
Number of seconds between pings for this line.
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="users_8h-source.html#l00062">62</a> of file <a class="el" href="users_8h-source.html">users.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="users_8h-source.html#l00064">ConnectClass()</a>. </td>
|
||||
Referenced by <a class="el" href="users_8h-source.html#l00067">ConnectClass()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="o1" doxytag="ConnectClass::registration_timeout"></a><p>
|
||||
@ -190,7 +222,7 @@ Max time to register the connection in seconds.
|
||||
<p>
|
||||
Definition at line <a class="el" href="users_8h-source.html#l00053">53</a> of file <a class="el" href="users_8h-source.html">users.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="users_8h-source.html#l00064">ConnectClass()</a>. </td>
|
||||
Referenced by <a class="el" href="users_8h-source.html#l00067">ConnectClass()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="o0" doxytag="ConnectClass::type"></a><p>
|
||||
@ -221,7 +253,7 @@ Definition at line <a class="el" href="users_8h-source.html#l00050">50</a> of fi
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="users_8h-source.html">users.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -33,7 +33,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classDNS.html#a3">ReverseLookup</a>(std::string ip)</td><td><a class="el" href="classDNS.html">DNS</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classDNS.html#r2">t</a></td><td><a class="el" href="classDNS.html">DNS</a></td><td><code> [private]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classDNS.html#a2">~DNS</a>()</td><td><a class="el" href="classDNS.html">DNS</a></td><td></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -885,7 +885,7 @@ Definition at line <a class="el" href="dns_8h-source.html#l00040">40</a> of file
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="dns_8h-source.html">dns.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -15,7 +15,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classXLine.html#o0">set_time</a></td><td><a class="el" href="classXLine.html">XLine</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classXLine.html#o2">source</a></td><td><a class="el" href="classXLine.html">XLine</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -45,7 +45,7 @@ Definition at line <a class="el" href="xline_8h-source.html#l00088">88</a> of fi
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="xline_8h-source.html">xline.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -14,7 +14,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classHostItem.html#o0">set_time</a></td><td><a class="el" href="classHostItem.html">HostItem</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classHostItem.html#a1">~HostItem</a>()</td><td><a class="el" href="classHostItem.html">HostItem</a></td><td><code> [inline, virtual]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -22,7 +22,7 @@ A subclass of <a class="el" href="classHostItem.html">HostItem</a> designed to h
|
||||
<p>
|
||||
Definition at line <a class="el" href="channels_8h-source.html#l00053">53</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="channels_8h-source.html">channels.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classExtMode.html#o2">params_when_on</a></td><td><a class="el" href="classExtMode.html">ExtMode</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classExtMode.html#o1">type</a></td><td><a class="el" href="classExtMode.html">ExtMode</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -247,7 +247,7 @@ Referenced by <a class="el" href="modules_8cpp-source.html#l00199">ExtMode()</a>
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="modules_8cpp-source.html">modules.cpp</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -13,7 +13,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classExtensible.html#a2">GetExt</a>(std::string key)</td><td><a class="el" href="classExtensible.html">Extensible</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classExtensible.html#a1">Shrink</a>(std::string key)</td><td><a class="el" href="classExtensible.html">Extensible</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -170,7 +170,7 @@ Definition at line <a class="el" href="base_8h-source.html#l00054">54</a> of fil
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="base_8h-source.html">base.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:28 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -17,7 +17,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classFileReader.html#a3">LoadFile</a>(std::string filename)</td><td><a class="el" href="classFileReader.html">FileReader</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classFileReader.html#a2">~FileReader</a>()</td><td><a class="el" href="classFileReader.html">FileReader</a></td><td></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -47,7 +47,7 @@ This class contains methods for read-only manipulation of a text file in memory.
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00774">774</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00772">772</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="FileReader::FileReader"></a><p>
|
||||
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
@ -116,7 +116,7 @@ This method initialises the class with a file loaded into it ready for GetLine a
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00725">725</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00776">fc</a>, and <a class="el" href="modules_8h-source.html#l00067">file_cache</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00774">fc</a>, and <a class="el" href="modules_8h-source.html#l00067">file_cache</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00726 {
|
||||
00727 <a class="code" href="modules_8h.html#a30">file_cache</a> c;
|
||||
@ -194,7 +194,7 @@ Returns true if the file exists This function will return false if the file coul
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00748">748</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00776">fc</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00774">fc</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00749 {
|
||||
00750 <span class="keywordflow">if</span> (<a class="code" href="classFileReader.html#r0">fc</a>.size() == 0)
|
||||
@ -240,7 +240,7 @@ This method returns the number of lines in the read file. If it is 0, no lines h
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00767">767</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00776">fc</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00774">fc</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00768 {
|
||||
00769 <span class="keywordflow">return</span> <a class="code" href="classFileReader.html#r0">fc</a>.size();
|
||||
@ -280,7 +280,7 @@ This method retrieves one line from the text file. If an empty non-NULL string i
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00760">760</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00776">fc</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00774">fc</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00761 {
|
||||
00762 <span class="keywordflow">if</span> ((x<0) || (x><a class="code" href="classFileReader.html#r0">fc</a>.size()))
|
||||
@ -322,7 +322,7 @@ This method loads a file into the class ready for GetLine and and other methods
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00736">736</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
References <a class="el" href="modules_8h-source.html#l00776">fc</a>, and <a class="el" href="modules_8h-source.html#l00067">file_cache</a>.
|
||||
References <a class="el" href="modules_8h-source.html#l00774">fc</a>, and <a class="el" href="modules_8h-source.html#l00067">file_cache</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00737 {
|
||||
00738 <a class="code" href="modules_8h.html#a30">file_cache</a> c;
|
||||
@ -354,14 +354,14 @@ References <a class="el" href="modules_8h-source.html#l00776">fc</a>, and <a cla
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00776">776</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00774">774</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
<p>
|
||||
Referenced by <a class="el" href="modules_8cpp-source.html#l00748">Exists()</a>, <a class="el" href="modules_8cpp-source.html#l00725">FileReader()</a>, <a class="el" href="modules_8cpp-source.html#l00767">FileSize()</a>, <a class="el" href="modules_8cpp-source.html#l00760">GetLine()</a>, and <a class="el" href="modules_8cpp-source.html#l00736">LoadFile()</a>. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following files:<ul>
|
||||
<li><a class="el" href="modules_8h-source.html">modules.h</a><li><a class="el" href="modules_8cpp-source.html">modules.cpp</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -15,7 +15,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classXLine.html#o0">set_time</a></td><td><a class="el" href="classXLine.html">XLine</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classXLine.html#o2">source</a></td><td><a class="el" href="classXLine.html">XLine</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -53,7 +53,7 @@ Definition at line <a class="el" href="xline_8h-source.html#l00079">79</a> of fi
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="xline_8h-source.html">xline.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:24 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -14,7 +14,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classHostItem.html#o0">set_time</a></td><td><a class="el" href="classHostItem.html">HostItem</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classHostItem.html#a1">~HostItem</a>()</td><td><a class="el" href="classHostItem.html">HostItem</a></td><td><code> [inline, virtual]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -178,7 +178,7 @@ Definition at line <a class="el" href="channels_8h-source.html#l00032">32</a> of
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="channels_8h-source.html">channels.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -14,7 +14,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classHostItem.html#o0">set_time</a></td><td><a class="el" href="classHostItem.html">HostItem</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classHostItem.html#a1">~HostItem</a>()</td><td><a class="el" href="classHostItem.html">HostItem</a></td><td><code> [inline, virtual]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -22,7 +22,7 @@ A subclass of <a class="el" href="classHostItem.html">HostItem</a> designed to h
|
||||
<p>
|
||||
Definition at line <a class="el" href="channels_8h-source.html#l00061">61</a> of file <a class="el" href="channels_8h-source.html">channels.h</a>.<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="channels_8h-source.html">channels.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -10,7 +10,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classInvited.html#o0">channel</a></td><td><a class="el" href="classInvited.html">Invited</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a0">classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -52,7 +52,7 @@ Referenced by <a class="el" href="users_8cpp-source.html#l00085">userrec::Invite
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="users_8h-source.html">users.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -15,7 +15,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classXLine.html#o0">set_time</a></td><td><a class="el" href="classXLine.html">XLine</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classXLine.html#o2">source</a></td><td><a class="el" href="classXLine.html">XLine</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -53,7 +53,7 @@ Definition at line <a class="el" href="xline_8h-source.html#l00068">68</a> of fi
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="xline_8h-source.html">xline.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classModeParameter.html#o0">mode</a></td><td><a class="el" href="classModeParameter.html">ModeParameter</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModeParameter.html#o1">parameter</a></td><td><a class="el" href="classModeParameter.html">ModeParameter</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -110,7 +110,7 @@ Referenced by <a class="el" href="channels_8cpp-source.html#l00149">chanrec::Set
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="channels_8h-source.html">channels.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -18,8 +18,8 @@
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a25">OnKill</a>(userrec *source, userrec *dest, std::string reason)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a26">OnLoadModule</a>(Module *mod, std::string name)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a13">OnOper</a>(userrec *user)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a8">OnPacketReceive</a>(char *p)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a7">OnPacketTransmit</a>(char *p)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a8">OnPacketReceive</a>(std::string &data, std::string serv)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a7">OnPacketTransmit</a>(std::string &data, std::string serv)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a9">OnRehash</a>()</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a10">OnServerRaw</a>(std::string &raw, bool inbound, userrec *user)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a3">OnUserConnect</a>(userrec *user)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
@ -36,7 +36,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a15">OnWhois</a>(userrec *source, userrec *dest)</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModule.html#a1">~Module</a>()</td><td><a class="el" href="classModule.html">Module</a></td><td><code> [virtual]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -36,10 +36,10 @@ Inherits <a class="el" href="classclassbase.html">classbase</a>.
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void </td><td class="memItemRight" valign=bottom><a class="el" href="classModule.html#a6">OnUserPart</a> (<a class="el" href="classuserrec.html">userrec</a> *user, <a class="el" href="classchanrec.html">chanrec</a> *channel)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">Called when a user parts a channel. </em> <a href="#a6"></a><em><br><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void </td><td class="memItemRight" valign=bottom><a class="el" href="classModule.html#a7">OnPacketTransmit</a> (char *p)</td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void </td><td class="memItemRight" valign=bottom><a class="el" href="classModule.html#a7">OnPacketTransmit</a> (std::string &data, std::string serv)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">Called before a packet is transmitted across the irc network between two irc servers. </em> <a href="#a7"></a><em><br><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void </td><td class="memItemRight" valign=bottom><a class="el" href="classModule.html#a8">OnPacketReceive</a> (char *p)</td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void </td><td class="memItemRight" valign=bottom><a class="el" href="classModule.html#a8">OnPacketReceive</a> (std::string &data, std::string serv)</td></tr>
|
||||
|
||||
<tr><td class="mdescLeft"> </td><td class="mdescRight">Called after a packet is received from another irc server. </em> <a href="#a8"></a><em><br><br></td></tr>
|
||||
<tr><td class="memItemLeft" nowrap align=right valign=top>virtual void </td><td class="memItemRight" valign=bottom><a class="el" href="classModule.html#a9">OnRehash</a> ()</td></tr>
|
||||
@ -604,10 +604,19 @@ Definition at line <a class="el" href="modules_8cpp-source.html#l00319">319</a>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void Module::OnPacketReceive </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">char * </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>p</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
<td class="md" nowrap valign="top">std::string & </td>
|
||||
<td class="mdname" nowrap> <em>data</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>serv</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td class="md">) </td>
|
||||
<td class="md" colspan="2"><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
@ -624,7 +633,7 @@ Definition at line <a class="el" href="modules_8cpp-source.html#l00319">319</a>
|
||||
<p>
|
||||
Called after a packet is received from another irc server.
|
||||
<p>
|
||||
The packet is represented as a char*, as it should be regarded as a buffer, and not a string. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called immediately after the packet is received but before any other operations with the core of the ircd.
|
||||
This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called immediately after the packet is received but before any other operations with the core of the ircd.
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00313">313</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
@ -640,10 +649,19 @@ Definition at line <a class="el" href="modules_8cpp-source.html#l00313">313</a>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void Module::OnPacketTransmit </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">char * </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>p</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
<td class="md" nowrap valign="top">std::string & </td>
|
||||
<td class="mdname" nowrap> <em>data</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>serv</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td class="md">) </td>
|
||||
<td class="md" colspan="2"><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
@ -660,7 +678,7 @@ Definition at line <a class="el" href="modules_8cpp-source.html#l00313">313</a>
|
||||
<p>
|
||||
Called before a packet is transmitted across the irc network between two irc servers.
|
||||
<p>
|
||||
The packet is represented as a char*, as it should be regarded as a buffer, and not a string. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called before ANY other operations within the ircd core program.
|
||||
This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called before ANY other operations within the ircd core program.
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8cpp-source.html#l00312">312</a> of file <a class="el" href="modules_8cpp-source.html">modules.cpp</a>.
|
||||
<p>
|
||||
@ -1309,7 +1327,7 @@ Definition at line <a class="el" href="modules_8cpp-source.html#l00321">321</a>
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following files:<ul>
|
||||
<li><a class="el" href="modules_8h-source.html">modules.h</a><li><a class="el" href="modules_8cpp-source.html">modules.cpp</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:29 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classModuleFactory.html#a0">ModuleFactory</a>()</td><td><a class="el" href="classModuleFactory.html">ModuleFactory</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classModuleFactory.html#a1">~ModuleFactory</a>()</td><td><a class="el" href="classModuleFactory.html">ModuleFactory</a></td><td><code> [inline, virtual]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:30 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -30,7 +30,7 @@ This is to allow for modules to create many different variants of <a class="el"
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00829">829</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00827">827</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ModuleFactory::ModuleFactory"></a><p>
|
||||
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
|
||||
<tr>
|
||||
@ -58,9 +58,9 @@ Definition at line <a class="el" href="modules_8h-source.html#l00829">829</a> of
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00832">832</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00830">830</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00832 { }
|
||||
<div class="fragment"><pre>00830 { }
|
||||
</pre></div> </td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -91,9 +91,9 @@ Definition at line <a class="el" href="modules_8h-source.html#l00832">832</a> of
|
||||
<p>
|
||||
|
||||
<p>
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00833">833</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
Definition at line <a class="el" href="modules_8h-source.html#l00831">831</a> of file <a class="el" href="modules_8h-source.html">modules.h</a>.
|
||||
<p>
|
||||
<div class="fragment"><pre>00833 { }
|
||||
<div class="fragment"><pre>00831 { }
|
||||
</pre></div> </td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -130,7 +130,7 @@ Your inherited class of ModuleFactory must return a pointer to your <a class="el
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="modules_8h-source.html">modules.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:30 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -16,7 +16,7 @@
|
||||
<tr class="memlist"><td><a class="el" href="classXLine.html#o0">set_time</a></td><td><a class="el" href="classXLine.html">XLine</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classXLine.html#o2">source</a></td><td><a class="el" href="classXLine.html">XLine</a></td><td></td></tr>
|
||||
<tr class="memlist"><td><a class="el" href="classclassbase.html#a1">~classbase</a>()</td><td><a class="el" href="classclassbase.html">classbase</a></td><td><code> [inline]</code></td></tr>
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
</table><hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:30 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
@ -82,7 +82,7 @@ Definition at line <a class="el" href="xline_8h-source.html#l00114">114</a> of f
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li><a class="el" href="xline_8h-source.html">xline.h</a></ul>
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Thu Apr 7 20:14:25 2005 for InspIRCd by
|
||||
<hr size="1"><address style="align: right;"><small>Generated on Sat Apr 9 14:38:30 2005 for InspIRCd by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0 >
|
||||
</a>1.3.3 </small></address>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user