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/server.c

    r787 r801  
    480480    cp->last = me.now; 
    481481 
    482     /* put it on the stage2 list.  technically it should stay as stage2 until 
     482    /* put it on the unregistered list.  it should stay unregistered until 
    483483     * the negotiation is finished and server_register() is called. */ 
    484     LIST_INSERT_HEAD(ircd.connections.stage2, cp, lp); 
     484    LIST_INSERT_HEAD(ircd.connections.unregistered, cp, lp); 
    485485    proto->setup(cp); 
    486486 
     
    557557    remove_hook(sock->datahook, server_connecting_hook); 
    558558    sock->udata = sp->conn; /* set udata to what is expected */ 
    559     /* also, make sure IRCD_CONN_DONE() will test positive */ 
    560     cp->flags |= (IRCD_CONNFL_DNS | IRCD_CONNFL_IDENT); 
    561559    add_hook(sock->datahook, ircd_connection_datahook); 
    562560    scp->srv = NULL; /* all done */ 
Note: See TracChangeset for help on using the changeset viewer.