Ignore:
Timestamp:
05/31/07 15:15:23 (5 years ago)
Author:
wd
Message:

Many more changes:

  • Moved the 'core' addon code into various places in the main ircd module.
  • Split channel/user modes out of channel.c/client.c and into chanmode.c/usermode.c respectively.
  • Added init/teardown routines for channel/usermodes.
  • Changed the INVIS and OPER macros to have longer(:/) and more descriptive names.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ithildin/modules/ircd/commands/userhost.c

    r579 r803  
    5858        if ((target = find_client(cur)) != NULL) 
    5959            len += snprintf(buf + len,  512 - len, "%s%s=%c%s@%s ", 
    60                     target->nick, OPER(target) ? "*" : "",  
     60                    target->nick, CLIENT_OPERATOR(target) ? "*" : "",  
    6161                    AWAYMSG(target) ? '-' : '+', target->user, target->host); 
    6262 
Note: See TracChangeset for help on using the changeset viewer.