Ignore:
Timestamp:
02/12/07 05:52:32 (5 years ago)
Author:
wd
Message:

Get the base/existing IRC module compiling again. Clear out old junk.

File:
1 edited

Legend:

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

    r579 r801  
    125125     * fairly valueless, especially on big servers, and there are other ways to 
    126126     * get full listings.  Only dump unknowns/opers/servers/classes for now */ 
    127     LIST_FOREACH(connp, ircd.connections.stage1, lp) 
     127    LIST_FOREACH(connp, ircd.connections.connected, lp) 
    128128        sendto_one(cli, RPL_FMT(cli, RPL_TRACEUNKNOWN), connp->cls->name, 
    129129                connp->host, me.now - connp->last); 
    130     LIST_FOREACH(connp, ircd.connections.stage2, lp) 
     130    LIST_FOREACH(connp, ircd.connections.unregistered, lp) 
    131131        sendto_one(cli, RPL_FMT(cli, RPL_TRACEUNKNOWN), connp->cls->name, 
    132132                connp->host, me.now - connp->last); 
     
    147147                scnt++; 
    148148        sp = connp->srv; 
    149         sendto_one(cli, RPL_FMT(cli, RPL_TRACESERVER), connp->cls->name, cnt, 
    150                 scnt, sp->name, "*", me.now - connp->last); 
     149        sendto_one(cli, RPL_FMT(cli, RPL_TRACESERVER), connp->cls->name, scnt, 
     150                cnt, sp->name, "*", me.now - connp->last); 
    151151    } 
    152152    LIST_FOREACH(clsp, ircd.lists.classes, lp) { 
Note: See TracChangeset for help on using the changeset viewer.