1
0
Fork 0
mirror of git://git.psyced.org/git/psyced synced 2024-08-15 03:25:10 +00:00

netsize()

This commit is contained in:
psyc://psyced.org/~lynX 2011-01-22 16:59:15 +01:00
parent c7949bd56a
commit d83ef160db
5 changed files with 11 additions and 1 deletions

View file

@ -2138,7 +2138,7 @@ names() { return m_values(_u); } // used by irc/user, applet/user
// place/owned and place/storic
objects() { return m_indices(_u); } // used by place/owned
size() { return sizeof(_u); } // who needs this!?
size() { return sizeof(_u); } // netsize() uses this
// this is overridden in more complex rooms to provide continous status output
memberInfo() { return _u; } // used by showRoom() in http/user

View file

@ -334,4 +334,7 @@ mixed isValidRelay(mixed x) { return x == ME || member(l, x); }
#else
# include "storic.c"
// with cslaves we no longer keep extra track of "netppl"
netsize() { return size(); }
#endif