]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - docs/man/man3/modules.cpp.3
Re-added the dot graphs again
[user/henk/code/inspircd.git] / docs / man / man3 / modules.cpp.3
index d6b4d814a88b721ed52e3611bb4f6437b13c3616..2c42d18cbb7d480b8334ea30bddeaf44c644df02 100644 (file)
@@ -1,4 +1,4 @@
-.TH "modules.cpp" 3 "28 Mar 2005" "InspIRCd" \" -*- nroff -*-
+.TH "modules.cpp" 3 "13 May 2005" "InspIRCd" \" -*- nroff -*-
 .ad l
 .nh
 .SH NAME
@@ -111,6 +111,9 @@ modules.cpp \-
 .RI "typedef nspace::hash_map< in_addr, string *, nspace::hash< in_addr >, \fBInAddr_HashComp\fP > \fBaddress_cache\fP"
 .br
 .ti -1c
+.RI "typedef nspace::hash_map< std::string, \fBWhoWasUser\fP *, nspace::hash< string >, \fBStrHashComp\fP > \fBwhowas_hash\fP"
+.br
+.ti -1c
 .RI "typedef std::deque< \fBcommand_t\fP > \fBcommand_table\fP"
 .br
 .ti -1c
@@ -164,6 +167,9 @@ modules.cpp \-
 .RI "std::vector< \fBircd_module\fP * > \fBfactory\fP"
 .br
 .ti -1c
+.RI "time_t \fBTIME\fP"
+.br
+.ti -1c
 .RI "int \fBLogLevel\fP"
 .br
 .ti -1c
@@ -242,7 +248,7 @@ modules.cpp \-
 .RI "int \fBportCount\fP"
 .br
 .ti -1c
-.RI "int \fBUDPportCount\fP"
+.RI "int \fBSERVERportCount\fP"
 .br
 .ti -1c
 .RI "int \fBports\fP [MAXSOCKS]"
@@ -263,13 +269,16 @@ modules.cpp \-
 .RI "FILE * \fBlog_file\fP"
 .br
 .ti -1c
+.RI "\fBuserrec\fP * \fBfd_ref_table\fP [65536]"
+.br
+.ti -1c
 .RI "\fBuser_hash\fP \fBclientlist\fP"
 .br
 .ti -1c
 .RI "\fBchan_hash\fP \fBchanlist\fP"
 .br
 .ti -1c
-.RI "\fBuser_hash\fP \fBwhowas\fP"
+.RI "\fBwhowas_hash\fP \fBwhowas\fP"
 .br
 .ti -1c
 .RI "\fBcommand_table\fP \fBcmdlist\fP"
@@ -291,119 +300,138 @@ modules.cpp \-
 .PP 
 .SS "#define nspace   std"
 .PP
-Definition at line 59 of file modules.cpp.
+Definition at line 64 of file modules.cpp.
 .SH "Typedef Documentation"
 .PP 
 .SS "typedef nspace::hash_map<in_addr,string*, nspace::hash<in_addr>, \fBInAddr_HashComp\fP> \fBaddress_cache\fP"
 .PP
-Definition at line 173 of file modules.cpp.
+Definition at line 187 of file modules.cpp.
 .SS "typedef nspace::hash_map<std::string, \fBchanrec\fP*, nspace::hash<string>, \fBStrHashComp\fP> \fBchan_hash\fP"
 .PP
-Definition at line 172 of file modules.cpp.
+Definition at line 186 of file modules.cpp.
 .SS "typedef std::deque<\fBcommand_t\fP> \fBcommand_table\fP"
 .PP
-Definition at line 174 of file modules.cpp.
+Definition at line 189 of file modules.cpp.
 .SS "typedef std::vector<\fBExtMode\fP> \fBExtModeList\fP"
 .PP
-Definition at line 200 of file modules.cpp.
+Definition at line 215 of file modules.cpp.
 .SS "typedef ExtModeList::iterator \fBExtModeListIter\fP"
 .PP
-Definition at line 201 of file modules.cpp.
+Definition at line 216 of file modules.cpp.
 .PP
 Referenced by ModeDefined(), ModeDefinedOff(), ModeDefinedOn(), ModeDefinedOper(), ModeIsListMode(), and ModeMakeList().
 .SS "typedef nspace::hash_map<std::string, \fBuserrec\fP*, nspace::hash<string>, \fBStrHashComp\fP> \fBuser_hash\fP"
 .PP
-Definition at line 171 of file modules.cpp.
+Definition at line 185 of file modules.cpp.
+.SS "typedef nspace::hash_map<std::string, \fBWhoWasUser\fP*, nspace::hash<string>, \fBStrHashComp\fP> \fBwhowas_hash\fP"
+.PP
+Definition at line 188 of file modules.cpp.
 .SH "Function Documentation"
 .PP 
 .SS "bool DoAddExtendedMode (char modechar, int type, bool requires_oper, int params_on, int params_off)"
 .PP
-Definition at line 273 of file modules.cpp.
+Definition at line 285 of file modules.cpp.
 .PP
 References EMode, and ModeDefined().
 .PP
 Referenced by Server::AddExtendedListMode(), and Server::AddExtendedMode().
 .PP
 .nf
-274 {
-275         if (ModeDefined(modechar,type)) {
-276                 return false;
-277         }
-278         EMode.push_back(ExtMode(modechar,type,requires_oper,params_on,params_off));
-279         return true;
-280 }
+286 {
+287         if (ModeDefined(modechar,type)) {
+288                 return false;
+289         }
+290         EMode.push_back(ExtMode(modechar,type,requires_oper,params_on,params_off));
+291         return true;
+292 }
 .fi
 .SS "std::vector<\fBircd_module\fP*> factory (255)"
 .PP
 .SS "bool ModeDefined (char modechar, int type)"
 .PP
-Definition at line 207 of file modules.cpp.
+Definition at line 222 of file modules.cpp.
 .PP
-References DEBUG, EMode, and ExtModeListIter.
+References EMode, and ExtModeListIter.
 .PP
 Referenced by DoAddExtendedMode().
 .PP
 .nf
-208 {
-209         log(DEBUG,'Size of extmodes vector is %d',EMode.size());
-210         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-211         {
-212                 if ((i->modechar == modechar) && (i->type == type))
-213                 {
-214                         return true;
-215                 }
-216         }
-217         return false;
-218 }
+223 {
+224         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
+225         {
+226                 if ((i->modechar == modechar) && (i->type == type))
+227                 {
+228                         return true;
+229                 }
+230         }
+231         return false;
+232 }
 .fi
 .SS "int ModeDefinedOff (char modechar, int type)"
 .PP
-Definition at line 260 of file modules.cpp.
+Definition at line 272 of file modules.cpp.
 .PP
 References EMode, and ExtModeListIter.
 .PP
 .nf
-261 {
-262         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-263         {
-264                 if ((i->modechar == modechar) && (i->type == type))
-265                 {
-266                         return i->params_when_off;
-267                 }
-268         }
-269         return 0;
-270 }
+273 {
+274         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
+275         {
+276                 if ((i->modechar == modechar) && (i->type == type))
+277                 {
+278                         return i->params_when_off;
+279                 }
+280         }
+281         return 0;
+282 }
 .fi
 .SS "int ModeDefinedOn (char modechar, int type)"
 .PP
-Definition at line 247 of file modules.cpp.
+Definition at line 259 of file modules.cpp.
 .PP
 References EMode, and ExtModeListIter.
 .PP
 .nf
-248 {
-249         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-250         {
-251                 if ((i->modechar == modechar) && (i->type == type))
-252                 {
-253                         return i->params_when_on;
-254                 }
-255         }
-256         return 0;
-257 }
+260 {
+261         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
+262         {
+263                 if ((i->modechar == modechar) && (i->type == type))
+264                 {
+265                         return i->params_when_on;
+266                 }
+267         }
+268         return 0;
+269 }
 .fi
 .SS "bool ModeDefinedOper (char modechar, int type)"
 .PP
-Definition at line 233 of file modules.cpp.
+Definition at line 246 of file modules.cpp.
+.PP
+References EMode, and ExtModeListIter.
+.PP
+.nf
+247 {
+248         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
+249         {
+250                 if ((i->modechar == modechar) && (i->type == type) && (i->needsoper == true))
+251                 {
+252                         return true;
+253                 }
+254         }
+255         return false;
+256 }
+.fi
+.SS "bool ModeIsListMode (char modechar, int type)"
 .PP
-References DEBUG, EMode, and ExtModeListIter.
+Definition at line 234 of file modules.cpp.
+.PP
+References EMode, and ExtModeListIter.
 .PP
 .nf
-234 {
-235         log(DEBUG,'Size of extmodes vector is %d',EMode.size());
+235 {
 236         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
 237         {
-238                 if ((i->modechar == modechar) && (i->type == type) && (i->needsoper == true))
+238                 if ((i->modechar == modechar) && (i->type == type) && (i->list == true))
 239                 {
 240                         return true;
 241                 }
@@ -411,45 +439,26 @@ References DEBUG, EMode, and ExtModeListIter.
 243         return false;
 244 }
 .fi
-.SS "bool ModeIsListMode (char modechar, int type)"
-.PP
-Definition at line 220 of file modules.cpp.
-.PP
-References DEBUG, EMode, and ExtModeListIter.
-.PP
-.nf
-221 {
-222         log(DEBUG,'Size of extmodes vector is %d',EMode.size());
-223         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-224         {
-225                 if ((i->modechar == modechar) && (i->type == type) && (i->list == true))
-226                 {
-227                         return true;
-228                 }
-229         }
-230         return false;
-231 }
-.fi
 .SS "void ModeMakeList (char modechar)"
 .PP
-Definition at line 283 of file modules.cpp.
+Definition at line 295 of file modules.cpp.
 .PP
 References EMode, ExtModeListIter, and MT_CHANNEL.
 .PP
 Referenced by Server::AddExtendedListMode().
 .PP
 .nf
-284 {
-285         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
-286         {
-287                 if ((i->modechar == modechar) && (i->type == MT_CHANNEL))
-288                 {
-289                         i->list = true;
-290                         return;
-291                 }
-292         }
-293         return;
-294 }
+296 {
+297         for (ExtModeListIter i = EMode.begin(); i < EMode.end(); i++)
+298         {
+299                 if ((i->modechar == modechar) && (i->type == MT_CHANNEL))
+300                 {
+301                         i->list = true;
+302                         return;
+303                 }
+304         }
+305         return;
+306 }
 .fi
 .SS "std::vector<\fBModule\fP*> modules (255)"
 .PP
@@ -457,140 +466,146 @@ Referenced by Server::AddExtendedListMode().
 .PP 
 .SS "char \fBAdminEmail\fP[MAXBUF]"
 .PP
-Definition at line 73 of file modules.cpp.
+Definition at line 84 of file modules.cpp.
 .SS "char \fBAdminName\fP[MAXBUF]"
 .PP
-Definition at line 72 of file modules.cpp.
+Definition at line 83 of file modules.cpp.
 .SS "char \fBAdminNick\fP[MAXBUF]"
 .PP
-Definition at line 74 of file modules.cpp.
+Definition at line 85 of file modules.cpp.
 .SS "std::vector<long> \fBauth_cookies\fP"
 .PP
-Definition at line 101 of file modules.cpp.
+Definition at line 112 of file modules.cpp.
 .SS "int \fBboundPortCount\fP"
 .PP
-Definition at line 95 of file modules.cpp.
+Definition at line 106 of file modules.cpp.
 .SS "\fBchan_hash\fP \fBchanlist\fP"
 .PP
-Definition at line 178 of file modules.cpp.
+Definition at line 193 of file modules.cpp.
 .SS "\fBuser_hash\fP \fBclientlist\fP"
 .PP
-Definition at line 177 of file modules.cpp.
-.PP
-Referenced by Server::GetUsers().
+Definition at line 192 of file modules.cpp.
 .SS "\fBcommand_table\fP \fBcmdlist\fP"
 .PP
-Definition at line 180 of file modules.cpp.
+Definition at line 195 of file modules.cpp.
 .SS "std::stringstream \fBconfig_f\fP"
 .PP
-Definition at line 102 of file modules.cpp.
+Definition at line 113 of file modules.cpp.
 .SS "int \fBdebugging\fP"
 .PP
-Definition at line 83 of file modules.cpp.
+Definition at line 94 of file modules.cpp.
 .SS "int \fBdefaultRoute\fP"
 .PP
-Definition at line 99 of file modules.cpp.
+Definition at line 110 of file modules.cpp.
 .SS "int \fBDieDelay\fP"
 .PP
-Definition at line 86 of file modules.cpp.
+Definition at line 97 of file modules.cpp.
 .SS "char \fBdiepass\fP[MAXBUF]"
 .PP
-Definition at line 75 of file modules.cpp.
+Definition at line 86 of file modules.cpp.
 .SS "char \fBDieValue\fP[MAXBUF]"
 .PP
-Definition at line 81 of file modules.cpp.
+Definition at line 92 of file modules.cpp.
 .SS "\fBExtModeList\fP \fBEMode\fP"
 .PP
-Definition at line 204 of file modules.cpp.
+Definition at line 219 of file modules.cpp.
 .PP
 Referenced by DoAddExtendedMode(), ModeDefined(), ModeDefinedOff(), ModeDefinedOn(), ModeDefinedOper(), ModeIsListMode(), and ModeMakeList().
 .SS "std::vector<\fBircd_module\fP*> factory"
 .PP
-Definition at line 66 of file modules.cpp.
+Definition at line 75 of file modules.cpp.
 .SS "std::vector<int> \fBfd_reap\fP"
 .PP
-Definition at line 92 of file modules.cpp.
+Definition at line 103 of file modules.cpp.
+.SS "\fBuserrec\fP* \fBfd_ref_table\fP[65536]"
+.PP
+Definition at line 119 of file modules.cpp.
+.PP
+Referenced by Server::FindDescriptor(), and Server::PseudoToUser().
 .SS "\fBaddress_cache\fP \fBIP\fP"
 .PP
-Definition at line 183 of file modules.cpp.
+Definition at line 198 of file modules.cpp.
 .SS "char \fBlist\fP[MAXBUF]"
 .PP
-Definition at line 79 of file modules.cpp.
+Definition at line 90 of file modules.cpp.
 .SS "FILE* \fBlog_file\fP"
 .PP
-Definition at line 106 of file modules.cpp.
+Definition at line 117 of file modules.cpp.
 .SS "int \fBLogLevel\fP"
 .PP
-Definition at line 68 of file modules.cpp.
+Definition at line 79 of file modules.cpp.
 .SS "int \fBMaxWhoResults\fP"
 .PP
-Definition at line 89 of file modules.cpp.
+Definition at line 100 of file modules.cpp.
 .SS "\fBserverrec\fP* \fBme\fP[32]"
 .PP
-Definition at line 104 of file modules.cpp.
+Definition at line 115 of file modules.cpp.
 .SS "int \fBMODCOUNT\fP = -1"
 .PP
-Definition at line 773 of file modules.cpp.
+Definition at line 1067 of file modules.cpp.
 .SS "std::vector<std::string> \fBmodule_names\fP"
 .PP
-Definition at line 93 of file modules.cpp.
+Definition at line 104 of file modules.cpp.
 .SS "std::vector<\fBModule\fP*> modules"
 .PP
-Definition at line 65 of file modules.cpp.
+Definition at line 74 of file modules.cpp.
 .SS "\fBfile_cache\fP \fBMOTD\fP"
 .PP
-Definition at line 181 of file modules.cpp.
+Definition at line 196 of file modules.cpp.
 .SS "char \fBmotd\fP[MAXBUF]"
 .PP
-Definition at line 77 of file modules.cpp.
+Definition at line 88 of file modules.cpp.
 .SS "time_t \fBnb_start\fP"
 .PP
-Definition at line 90 of file modules.cpp.
+Definition at line 101 of file modules.cpp.
 .SS "int \fBNetBufferSize\fP"
 .PP
-Definition at line 88 of file modules.cpp.
+Definition at line 99 of file modules.cpp.
 .SS "char \fBNetwork\fP[MAXBUF]"
 .PP
-Definition at line 70 of file modules.cpp.
+Definition at line 81 of file modules.cpp.
 .SS "int \fBportCount\fP"
 .PP
-Definition at line 96 of file modules.cpp.
+Definition at line 107 of file modules.cpp.
 .SS "int \fBports\fP[MAXSOCKS]"
 .PP
-Definition at line 98 of file modules.cpp.
+Definition at line 109 of file modules.cpp.
 .SS "char \fBPrefixQuit\fP[MAXBUF]"
 .PP
-Definition at line 80 of file modules.cpp.
+Definition at line 91 of file modules.cpp.
 .SS "char \fBrestartpass\fP[MAXBUF]"
 .PP
-Definition at line 76 of file modules.cpp.
+Definition at line 87 of file modules.cpp.
 .SS "\fBfile_cache\fP \fBRULES\fP"
 .PP
-Definition at line 182 of file modules.cpp.
+Definition at line 197 of file modules.cpp.
 .SS "char \fBrules\fP[MAXBUF]"
 .PP
-Definition at line 78 of file modules.cpp.
+Definition at line 89 of file modules.cpp.
 .SS "char \fBServerDesc\fP[MAXBUF]"
 .PP
-Definition at line 71 of file modules.cpp.
+Definition at line 82 of file modules.cpp.
 .SS "char \fBServerName\fP[MAXBUF]"
 .PP
-Definition at line 69 of file modules.cpp.
+Definition at line 80 of file modules.cpp.
+.SS "int \fBSERVERportCount\fP"
+.PP
+Definition at line 108 of file modules.cpp.
 .SS "time_t \fBstartup_time\fP"
 .PP
-Definition at line 87 of file modules.cpp.
-.SS "int \fBUDPportCount\fP"
+Definition at line 98 of file modules.cpp.
+.SS "time_t \fBTIME\fP"
 .PP
-Definition at line 97 of file modules.cpp.
-.SS "\fBuser_hash\fP \fBwhowas\fP"
+Definition at line 77 of file modules.cpp.
+.SS "\fBwhowas_hash\fP \fBwhowas\fP"
 .PP
-Definition at line 179 of file modules.cpp.
+Definition at line 194 of file modules.cpp.
 .SS "int \fBWHOWAS_MAX\fP"
 .PP
-Definition at line 85 of file modules.cpp.
+Definition at line 96 of file modules.cpp.
 .SS "int \fBWHOWAS_STALE\fP"
 .PP
-Definition at line 84 of file modules.cpp.
+Definition at line 95 of file modules.cpp.
 .SH "Author"
 .PP 
 Generated automatically by Doxygen for InspIRCd from the source code.