.TH "ConnectClass" 3 "4 Apr 2005" "InspIRCd" \" -*- nroff -*- .ad l .nh .SH NAME ConnectClass \- Holds information relevent to and tags in the config file. .PP .SH SYNOPSIS .br .PP \fC#include \fP .PP Inherits \fBclassbase\fP. .PP .SS "Public Member Functions" .in +1c .ti -1c .RI "\fBConnectClass\fP ()" .br .in -1c .SS "Public Attributes" .in +1c .ti -1c .RI "int \fBtype\fP" .br .RI "\fIType of line, either CC_ALLOW or CC_DENY. \fP" .ti -1c .RI "int \fBregistration_timeout\fP" .br .RI "\fIMax time to register the connection in seconds. \fP" .ti -1c .RI "int \fBflood\fP" .br .RI "\fINumber of lines in buffer before excess flood is triggered. \fP" .ti -1c .RI "char \fBhost\fP [MAXBUF]" .br .RI "\fIHost mask for this line. \fP" .ti -1c .RI "char \fBpass\fP [MAXBUF]" .br .RI "\fI(Optional) Password for this line \fP" .in -1c .SH "Detailed Description" .PP Holds information relevent to and tags in the config file. Definition at line 45 of file users.h. .SH "Constructor & Destructor Documentation" .PP .SS "ConnectClass::ConnectClass ()\fC [inline]\fP" .PP Definition at line 64 of file users.h. .PP References flood, host, pass, and registration_timeout. .PP .nf 65 { 66 registration_timeout = 0; 67 flood = 0; 68 strlcpy(host,'',MAXBUF); 69 strlcpy(pass,'',MAXBUF); 70 } .fi .SH "Member Data Documentation" .PP .SS "int \fBConnectClass::flood\fP" .PP Number of lines in buffer before excess flood is triggered. Definition at line 56 of file users.h. .PP Referenced by ConnectClass(). .SS "char \fBConnectClass::host\fP[MAXBUF]" .PP Host mask for this line. Definition at line 59 of file users.h. .PP Referenced by ConnectClass(). .SS "char \fBConnectClass::pass\fP[MAXBUF]" .PP (Optional) Password for this line Definition at line 62 of file users.h. .PP Referenced by ConnectClass(). .SS "int \fBConnectClass::registration_timeout\fP" .PP Max time to register the connection in seconds. Definition at line 53 of file users.h. .PP Referenced by ConnectClass(). .SS "int \fBConnectClass::type\fP" .PP Type of line, either CC_ALLOW or CC_DENY. Definition at line 50 of file users.h. .SH "Author" .PP Generated automatically by Doxygen for InspIRCd from the source code.