#include <users.h>
Inheritance diagram for ConnectClass:


Public Member Functions | |
| ConnectClass () | |
Public Attributes | |
| int | type |
| Type of line, either CC_ALLOW or CC_DENY. | |
| int | registration_timeout |
| Max time to register the connection in seconds. | |
| int | flood |
| Number of lines in buffer before excess flood is triggered. | |
| char | host [MAXBUF] |
| Host mask for this line. | |
| char | pass [MAXBUF] |
| (Optional) Password for this line | |
Definition at line 34 of file users.h.
|
|
Definition at line 53 of file users.h.
00054 {
00055 registration_timeout = 0;
00056 flood = 0;
00057 strcpy(host,"");
00058 strcpy(pass,"");
00059 }
|
|
|
Number of lines in buffer before excess flood is triggered.
|
|
|
Host mask for this line.
|
|
|
(Optional) Password for this line
|
|
|
Max time to register the connection in seconds.
|
|
|
Type of line, either CC_ALLOW or CC_DENY.
|
1.3-rc3