summaryrefslogtreecommitdiff
path: root/docs/man/man3/ConnectClass.3
diff options
context:
space:
mode:
Diffstat (limited to 'docs/man/man3/ConnectClass.3')
-rw-r--r--docs/man/man3/ConnectClass.342
1 files changed, 31 insertions, 11 deletions
diff --git a/docs/man/man3/ConnectClass.3 b/docs/man/man3/ConnectClass.3
index 0721962c6..fd38a4afe 100644
--- a/docs/man/man3/ConnectClass.3
+++ b/docs/man/man3/ConnectClass.3
@@ -1,4 +1,4 @@
-.TH "ConnectClass" 3 "7 May 2005" "InspIRCd" \" -*- nroff -*-
+.TH "ConnectClass" 3 "12 May 2005" "InspIRCd" \" -*- nroff -*-
.ad l
.nh
.SH NAME
@@ -50,6 +50,14 @@ Inherits \fBclassbase\fP.
.RI "long \fBthreshold\fP"
.br
.RI "\fIThreshold value for flood disconnect. \fP"
+.ti -1c
+.RI "long \fBsendqmax\fP"
+.br
+.RI "\fIMaximum size of sendq for users in this class (bytes). \fP"
+.ti -1c
+.RI "long \fBrecvqmax\fP"
+.br
+.RI "\fIMaximum size of recvq for users in this class (bytes). \fP"
.in -1c
.SH "Detailed Description"
.PP
@@ -58,19 +66,21 @@ Holds information relevent to <connect allow> and <connect deny> tags in the con
.PP
.SS "ConnectClass::ConnectClass ()\fC [inline]\fP"
.PP
-Definition at line 71 of file users.h.
+Definition at line 79 of file users.h.
.PP
-References flood, host, pass, pingtime, registration_timeout, and threshold.
+References flood, host, pass, pingtime, recvqmax, registration_timeout, sendqmax, and threshold.
.PP
.nf
-72 {
-73 registration_timeout = 0;
-74 flood = 0;
-75 pingtime = 0;
-76 threshold = 0;
-77 strlcpy(host,'',MAXBUF);
-78 strlcpy(pass,'',MAXBUF);
-79 }
+80 {
+81 registration_timeout = 0;
+82 flood = 0;
+83 pingtime = 0;
+84 threshold = 0;
+85 sendqmax = 0;
+86 recvqmax = 0;
+87 strlcpy(host,'',MAXBUF);
+88 strlcpy(pass,'',MAXBUF);
+89 }
.fi
.SH "Member Data Documentation"
.PP
@@ -94,11 +104,21 @@ Referenced by ConnectClass().
Number of seconds between pings for this line. Definition at line 62 of file users.h.
.PP
Referenced by ConnectClass().
+.SS "long \fBConnectClass::recvqmax\fP"
+.PP
+Maximum size of recvq for users in this class (bytes). Definition at line 77 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 "long \fBConnectClass::sendqmax\fP"
+.PP
+Maximum size of sendq for users in this class (bytes). Definition at line 73 of file users.h.
+.PP
+Referenced by ConnectClass().
.SS "long \fBConnectClass::threshold\fP"
.PP
Threshold value for flood disconnect. Definition at line 69 of file users.h.