From: Gabriel B. <sh...@us...> - 2005-07-09 23:30:14
|
Update of /cvsroot/solidircd/solidircd-stable/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19737/include Modified Files: config.h struct.h Log Message: update. Index: config.h =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/include/config.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** config.h 9 Jul 2005 15:11:12 -0000 1.8 --- config.h 9 Jul 2005 23:30:02 -0000 1.9 *************** *** 225,229 **** * Enable this at your own risk currently elmer is not working but silly works. - Sheik 1/7/2005 */ ! #undef TOYS /* File names --- 225,229 ---- * Enable this at your own risk currently elmer is not working but silly works. - Sheik 1/7/2005 */ ! #define TOYS /* File names *************** *** 936,941 **** * Don't use it. - lucas */ ! #undef DEBUGMODE /* define DEBUGMODE to enable */ ! #undef DUMP_DEBUG --- 936,941 ---- * Don't use it. - lucas */ ! #define DEBUGMODE /* define DEBUGMODE to enable */ ! #define DUMP_DEBUG Index: struct.h =================================================================== RCS file: /cvsroot/solidircd/solidircd-stable/include/struct.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** struct.h 9 Jul 2005 20:18:49 -0000 1.4 --- struct.h 9 Jul 2005 23:30:02 -0000 1.5 *************** *** 115,133 **** - char mydummy[64]; - char mydummy2[64]; - #define WHOSTENTP(x) ((x)[0]|(x)[1]|(x)[2]|(x)[3]|(x)[4]|(x)[5]|(x)[6]|(x)[7]|(x)[8]|(x)[9]|(x)[10]|(x)[11]|(x)[12]|(x)[13]|(x)[14]|(x)[15]) - - #define INADDRANY_STR "0::0" - /* from manpage: - In order to allow applications - to easily declare buffers of the proper size to store IPv4 - and IPv6 addresses in string form, the following two con- - stants are defined in <netinet/in.h>: - - #define INET_ADDRSTRLEN 16 - #define INET6_ADDRSTRLEN 46 - */ #define HOSTIPLEN 46 /* Length of ipv6 address */ --- 115,119 ---- *************** *** 263,267 **** #define FLAGS_SSL 0x40000000 /* SSL */ #endif - #define FLAGS_IPV6 0x80000000 /* user is an ipv6 user */ /* Capabilities of the ircd or clients */ --- 249,252 ---- *************** *** 344,349 **** - - /* for sendto_ops_lev */ --- 329,332 ---- *************** *** 490,495 **** #endif - #define IsIPV6(x) ((x)->flags & FLAGS_IPV6) - #define SetIPV6(x) ((x)->flags |= FLAGS_IPV6) #define IsURSL(x) ((x)->flags & FLAGS_URSL) --- 473,476 ---- |