mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
Added quick reference to token types
Added more stuff to /MAP git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@528 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
4ee16daf7c
commit
4a1611a5c0
@ -4903,14 +4903,25 @@ int usercount_unknown(void)
|
||||
return c;
|
||||
}
|
||||
|
||||
int chancount(void)
|
||||
long chancount(void)
|
||||
{
|
||||
return chanlist.size();
|
||||
}
|
||||
|
||||
int servercount(void)
|
||||
long count_servs(void)
|
||||
{
|
||||
return 1;
|
||||
c = 0;
|
||||
for (int j = 0; j < 255; j++)
|
||||
{
|
||||
if (servers[j] != NULL)
|
||||
c++;
|
||||
}
|
||||
return c;
|
||||
}
|
||||
|
||||
long servercount(void)
|
||||
{
|
||||
return count_servs()+1;
|
||||
}
|
||||
|
||||
void handle_lusers(char **parameters, int pcnt, userrec *user)
|
||||
@ -4919,7 +4930,7 @@ void handle_lusers(char **parameters, int pcnt, userrec *user)
|
||||
WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers());
|
||||
WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown());
|
||||
WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount());
|
||||
WriteServ(user->fd,"254 %s :I have %d clients and 0 servers",user->nick,usercnt());
|
||||
WriteServ(user->fd,"254 %s :I have %d clients and %d servers",user->nick,local_count(),count_servs());
|
||||
}
|
||||
|
||||
void handle_admin(char **parameters, int pcnt, userrec *user)
|
||||
|
Loading…
x
Reference in New Issue
Block a user