]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/man/ConnectClass.3
Added remote kill
[user/henk/code/inspircd.git] / docs / man / ConnectClass.3
1 .TH "ConnectClass" 3 "30 Apr 2004" "InspIRCd" \" -*- nroff -*-
2 .ad l
3 .nh
4 .SH NAME
5 ConnectClass \- Holds information relevent to <connect allow> and <connect deny> tags in the config file. 
6
7 .PP
8 .SH SYNOPSIS
9 .br
10 .PP
11 \fC#include <users.h>\fP
12 .PP
13 Inherits \fBclassbase\fP.
14 .PP
15 .SS "Public Member Functions"
16
17 .in +1c
18 .ti -1c
19 .RI "\fBConnectClass\fP ()"
20 .br
21 .in -1c
22 .SS "Public Attributes"
23
24 .in +1c
25 .ti -1c
26 .RI "int \fBtype\fP"
27 .br
28 .RI "\fIType of line, either CC_ALLOW or CC_DENY.\fP"
29 .ti -1c
30 .RI "int \fBregistration_timeout\fP"
31 .br
32 .RI "\fIMax time to register the connection in seconds.\fP"
33 .ti -1c
34 .RI "int \fBflood\fP"
35 .br
36 .RI "\fINumber of lines in buffer before excess flood is triggered.\fP"
37 .ti -1c
38 .RI "char \fBhost\fP [MAXBUF]"
39 .br
40 .RI "\fIHost mask for this line.\fP"
41 .ti -1c
42 .RI "char \fBpass\fP [MAXBUF]"
43 .br
44 .RI "\fI(Optional) Password for this line\fP"
45 .in -1c
46 .SH "Detailed Description"
47 .PP 
48 Holds information relevent to <connect allow> and <connect deny> tags in the config file.Definition at line 34 of file users.h.
49 .SH "Constructor & Destructor Documentation"
50 .PP 
51 .SS "ConnectClass::ConnectClass ()\fC [inline]\fP"
52 .PP
53 Definition at line 53 of file users.h.
54 .PP
55 .nf
56 54         {
57 55                 registration_timeout = 0;
58 56                 flood = 0;
59 57                 strcpy(host,'');
60 58                 strcpy(pass,'');
61 59         }
62 .fi
63 .SH "Member Data Documentation"
64 .PP 
65 .SS "int ConnectClass::flood"
66 .PP
67 Number of lines in buffer before excess flood is triggered.Definition at line 45 of file users.h.
68 .SS "char ConnectClass::host[MAXBUF]"
69 .PP
70 Host mask for this line.Definition at line 48 of file users.h.
71 .SS "char ConnectClass::pass[MAXBUF]"
72 .PP
73 (Optional) Password for this lineDefinition at line 51 of file users.h.
74 .SS "int ConnectClass::registration_timeout"
75 .PP
76 Max time to register the connection in seconds.Definition at line 42 of file users.h.
77 .SS "int ConnectClass::type"
78 .PP
79 Type of line, either CC_ALLOW or CC_DENY.Definition at line 39 of file users.h.
80
81 .SH "Author"
82 .PP 
83 Generated automatically by Doxygen for InspIRCd from the source code.