From: Juan B. <tu...@us...> - 2004-07-22 16:10:57
|
Update of /cvsroot/solidircd/Solid-dev/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5086/include Modified Files: Tag: Solid-030110 msg.h numeric.h struct.h Log Message: - Made a new /INFO and moved the old one to /DALINFO Index: msg.h =================================================================== RCS file: /cvsroot/solidircd/Solid-dev/include/msg.h,v retrieving revision 1.16 retrieving revision 1.16.2.1 diff -C2 -d -r1.16 -r1.16.2.1 *** msg.h 13 Jul 2004 23:48:56 -0000 1.16 --- msg.h 22 Jul 2004 16:10:28 -0000 1.16.2.1 *************** *** 125,128 **** --- 125,129 ---- #define MSG_TKLS "TKLS" /* TKLS */ #define MSG_TKLG "TKLG" /* TKLG */ + #define MSG_DALINFO "DALINFO" /* DALINFO */ #ifdef ELMER *************** *** 151,155 **** extern int m_error(), m_notice(), m_invite(), m_quit(), m_kill(); extern int m_motd(), m_who(), m_whois(), m_user(), m_list(); ! extern int m_server(), m_info(), m_links(), m_summon(), m_stats(); extern int m_users(), m_services(), m_identify(), m_ns(), m_cs(); extern int m_ms(), m_rs(), m_os(), m_ss(), m_hs(), m_svsnick(); --- 152,156 ---- extern int m_error(), m_notice(), m_invite(), m_quit(), m_kill(); extern int m_motd(), m_who(), m_whois(), m_user(), m_list(); ! extern int m_server(), m_info(), m_dalinfo(), m_links(), m_summon(), m_stats(); extern int m_users(), m_services(), m_identify(), m_ns(), m_cs(); extern int m_ms(), m_rs(), m_os(), m_ss(), m_hs(), m_svsnick(); *************** *** 274,277 **** --- 275,289 ---- {MSG_SS, m_ss, 0, 1, 1, 1, 0, 0L}, {MSG_HS, m_hs, 0, 1, 1, 1, 0, 0L}, + {MSG_SHUN, m_shun, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_UNSHUN, m_unshun, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_GLINE, m_gline, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_UNGLINE, m_ungline, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_SVHOST, m_svhost, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_SETHOST, m_sethost, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_MAP, m_map, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_CONOPS, m_conops, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_TKLS, m_tkls, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_TKLG, m_tklg, 0, MAXPARA, 1, 0, 0, 0L}, + {MSG_DALINFO, m_dalinfo, 0, MAXPARA, 1, 0, 0, 0L}, #ifdef ELMER {MSG_ELMER, m_elmer, 0, MAXPARA, 1, 0, 0, 0L}, *************** *** 286,299 **** {MSG_DCCALLOW, m_dccallow, 0, 1, 1, 0, 0, 0L }, #endif - {MSG_SHUN, m_shun, 0, MAXPARA, 1, 0, 0, 0L}, - {MSG_UNSHUN, m_unshun, 0, MAXPARA, 1, 0, 0, 0L}, - {MSG_GLINE, m_gline, 0, MAXPARA, 1, 0, 0, 0L}, - {MSG_UNGLINE, m_ungline, 0, MAXPARA, 1, 0, 0, 0L}, - {MSG_SVHOST, m_svhost, 0, MAXPARA, 1, 0, 0, 0L}, - {MSG_SETHOST, m_sethost, 0, MAXPARA, 1, 0, 0, 0L}, - {MSG_MAP, m_map, 0, MAXPARA, 1, 0, 0, 0L}, - {MSG_CONOPS, m_conops, 0, MAXPARA, 1, 0, 0, 0L}, - {MSG_TKLS, m_tkls, 0, MAXPARA, 1, 0, 0, 0L}, - {MSG_TKLG, m_tklg, 0, MAXPARA, 1, 0, 0, 0L}, {(char *) 0, (int (*)()) 0, 0, 0, 0, 0, 0, 0L} }; --- 298,301 ---- Index: struct.h =================================================================== RCS file: /cvsroot/solidircd/Solid-dev/include/struct.h,v retrieving revision 1.25 retrieving revision 1.25.2.1 diff -C2 -d -r1.25 -r1.25.2.1 *** struct.h 17 Jul 2004 00:41:20 -0000 1.25 --- struct.h 22 Jul 2004 16:10:44 -0000 1.25.2.1 *************** *** 1161,1165 **** /* misc variable externs */ ! extern char version[128], *infotext[]; extern char *generation, *creation; --- 1161,1165 ---- /* misc variable externs */ ! extern char version[128], *infotext[], *dalinfotext[]; extern char *generation, *creation; Index: numeric.h =================================================================== RCS file: /cvsroot/solidircd/Solid-dev/include/numeric.h,v retrieving revision 1.12 retrieving revision 1.12.2.1 diff -C2 -d -r1.12 -r1.12.2.1 *** numeric.h 17 Jul 2004 00:41:20 -0000 1.12 --- numeric.h 22 Jul 2004 16:10:44 -0000 1.12.2.1 *************** *** 274,277 **** --- 274,278 ---- #define RPL_MOTDSTART 375 #define RPL_ENDOFMOTD 376 + #define RPL_ENDOFDALINFO 377 #define RPL_YOUREOPER 381 |