[IRC-Dev CVS] Module ircdh: Change commited ircdh CAMBIOS.IRCDEV,1.11,1.12
Brought to you by:
zolty
From: Zolty <zo...@us...> - 2002-08-15 20:55:26
|
Update of /cvsroot/irc-dev/ircdh In directory usw-pr-cvs1:/tmp/cvs-serv7124/ircdh Modified Files: CAMBIOS.IRCDEV Log Message: 2002-08-15 Toni Garcia <zo...@ir...> Comienzo de la ordenacion del codigo. * Muevo todos los defines del whocmds.c al .h ya que nos hara falta cuando pongamos cada comando, un *.c. * Se hacen cambios en muchos variables globales con el fin de facilitar la lectura e interpretacion. Son los siguientes: time_t now; => time_t CurrentTime; struct Client client; => struct Client *GlobalClientList; struct lusers_st nrof; => struct UserStatistics UserStats; struct stats *ircstp; => struct ServerStatistics *ServerStats; struct ConfItem *conf; => struct ConfItem *GlobalConfList; struct DSlink; => struct DLink; * Empiezo a eliminar los alias de structs, ejempo "aClient" pasa a ser "struct Client". Y en algunas funciones agrego "const" cuando han de mantener la variable de forma constante. * Se desactivan temporalmente WATCH y ESNET_ZLIB mientras se va ordenando el codigo, en breves dias estaran activados. * En los archivos .h de la carpeta include meto las cabeceras con el $Id: de control de RCS asi como los nuevos defines al estilo Undernet. * Se mueven los defines *LEN y similiares al nuevo fichero ircd_defs.h. Index: CAMBIOS.IRCDEV =================================================================== RCS file: /cvsroot/irc-dev/ircdh/CAMBIOS.IRCDEV,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- CAMBIOS.IRCDEV 6 Aug 2002 18:45:19 -0000 1.11 +++ CAMBIOS.IRCDEV 15 Aug 2002 20:55:23 -0000 1.12 @@ -1,3 +1,30 @@ +2002-08-15 Toni Garcia <zo...@ir...> + Comienzo de la ordenacion del codigo. + * Muevo todos los defines del whocmds.c al .h ya que nos hara falta cuando + pongamos cada comando, un *.c. + + * Se hacen cambios en muchos variables globales con el fin de facilitar la + lectura e interpretacion. Son los siguientes: + time_t now; => time_t CurrentTime; + struct Client client; => struct Client *GlobalClientList; + struct lusers_st nrof; => struct UserStatistics UserStats; + struct stats *ircstp; => struct ServerStatistics *ServerStats; + struct ConfItem *conf; => struct ConfItem *GlobalConfList; + struct DSlink; => struct DLink; + + * Empiezo a eliminar los alias de structs, ejempo "aClient" pasa a ser "struct + Client". Y en algunas funciones agrego "const" cuando han de mantener la + variable de forma constante. + + * Se desactivan temporalmente WATCH y ESNET_ZLIB mientras se va ordenando el + codigo, en breves dias estaran activados. + + * En los archivos .h de la carpeta include meto las cabeceras con el $Id: + de control de RCS asi como los nuevos defines al estilo Undernet. + + * Se mueven los defines *LEN y similiares al nuevo fichero ircd_defs.h. + + 2002-08-06 Toni Garcia <zo...@ir...> Sincronizacion con u2.10.H.05.16 y varios cambios. * include/{struct.h|channel.h}: Nuevas macros KICKLEN, AWAYLEN y QUITLEN |