haylebob wrote:hello
im confused.
i checked the Class Block in unrealirc.conf the 500 maxclients
class clients
{
pingfreq 90;
maxclients 500;
sendq 100000;
recvq 8000;
};
the servermessage say this
Current Local Users: 2 Max: 4
Current Global Users: 2 Max: 2
whats that means?
Class blocks are classes in which connections will be placed (for example from allow blocks or servers from link blocks), you generally have multiple class blocks (ex: for servers, clients, opers).
-name is the descriptive name, like "clients" or "servers", this name is used for referring to this class from allow/link/oper/etc blocks
-pingfreq is the number of seconds between PINGs from the server (something between 90 and 180 is recommended).
-connfreq is used only for servers and is the number of seconds between connection attempts if autoconnect is enabled
-maxclients specifies the maximum (total) number of clients/servers which can be in this class
-sendq specifies the amount of data which can be in the send queue (very high for servers with low bandwidth, medium for clients)
-recvq specifies the amount of data which can be in the receive queue and is used for flood control (this only applies to normal users, try experimenting with values 3000-8000, 8000 is the default).
Current users - the number of users connected to the Network
Max users - the number of users that have been connected to the Network at one time
*note - Max users does not mean how many maximum allowed.