X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/b1fc1658e14abb7def8a8d274c82a71fa47b502d..c961476e55ec9833ffcb271b54b07e1f9f5d6caa:/ChangeLog diff --git a/ChangeLog b/ChangeLog index 1b128f6..3e40af9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,274 @@ +nenolod 2007/03/05 17:23:07 UTC (20070305-3229) + Log: + - use a hashtable for fdlist storage. first step to making the amount of allowed clients dynamic and removing MAXCONNECTIONS. + + + Changes: Modified: + +97 -26 trunk/libcharybdis/commio.c (File Modified) + +3 -2 trunk/libcharybdis/commio.h (File Modified) + +8 -6 trunk/libcharybdis/devpoll.c (File Modified) + +1 -1 trunk/libcharybdis/epoll.c (File Modified) + +2 -2 trunk/libcharybdis/kqueue.c (File Modified) + +3 -3 trunk/libcharybdis/poll.c (File Modified) + +2 -2 trunk/libcharybdis/ports.c (File Modified) + +2 -2 trunk/libcharybdis/select.c (File Modified) + + +jilles 2007/03/05 01:14:46 UTC (20070305-3227) + Log: + Fix some cases where the size argument to strlcpy() + for usernames and hostnames is 1 too small. + + + Changes: Modified: + +1 -1 trunk/modules/m_chghost.c (File Modified) + +2 -2 trunk/src/res.c (File Modified) + +2 -2 trunk/src/s_user.c (File Modified) + + +jilles 2007/03/04 23:42:55 UTC (20070304-3225) + Log: + Cut down quit/part/kick reasons to avoid quit reasons + overflowing the client exiting server notice (from + TOPICLEN to 260). kill reasons become shorter accordingly. + kline/dline/gline reasons become 390. + away messages stay at TOPICLEN for now. + + + Changes: Modified: + +8 -3 trunk/include/ircd_defs.h (File Modified) + +2 -2 trunk/modules/m_dline.c (File Modified) + +4 -4 trunk/modules/m_gline.c (File Modified) + +2 -2 trunk/modules/m_kline.c (File Modified) + + +jilles 2007/03/02 17:45:47 UTC (20070302-3223) + Log: + Don't leak auth{} spoofed IP addresses in +f notices. + from ratbox (androsyn) + + + Changes: Modified: + +10 -3 trunk/src/s_conf.c (File Modified) + + +jilles 2007/02/24 19:34:28 UTC (20070224-3219) + Log: + Make oper_up() take +i/-i during opering up into account + (e.g. no_oper_invis extension, +i in operator::umodes). + Remove the hack from no_oper_invis. + + + Changes: Modified: + +0 -2 trunk/extensions/no_oper_invis.c (File Modified) + +4 -0 trunk/src/s_user.c (File Modified) + + +jilles 2007/02/24 18:35:58 UTC (20070224-3215) + Log: + no_oper_invis: decrement invisible count when clearing + invisible on a local client who has just opered up + oper_up() should really do this + + + Changes: Modified: + +2 -0 trunk/extensions/no_oper_invis.c (File Modified) + + +jilles 2007/02/21 19:52:51 UTC (20070221-3213) + Log: + Put "End of Channel Quiet List" instead of + "End of Channel Ban List" for a +q list. + Due to client restrictions the numerics for + quiet lists must be the same as for ban lists. + + + Changes: Modified: + +4 -1 trunk/src/chmode.c (File Modified) + + +jilles 2007/02/20 00:34:28 UTC (20070220-3211) + Log: + Port over ratbox 2.2 r23507, r23624, r23626 (jilles/anfl): + Change TS6 JOIN processing + - don't send out simple modes in TS6 JOIN and TS5 SJOIN when + a local user joins an existing channel + - don't send out simple modes in TS6 JOIN and TS5 SJOIN when + propagating a TS6 JOIN + - don't interpret simple modes in an incoming TS6 JOIN + + This is to avoid desyncs when certain mode changes (e.g. -im) + cross with joins. A downside is that simple modes will be + more desynched when a JOIN creates a channel or lowers TS, + but that's less important. + + Update the TS6 specification to include this, and clarify + that TMODE can come from a server and that MODE must be + translated into TMODE from other servers too. + + + Changes: Modified: + +69 -39 trunk/doc/technical/ts6.txt (File Modified) + +19 -127 trunk/modules/core/m_join.c (File Modified) + + +jilles 2007/02/11 16:54:43 UTC (20070211-3209) + Log: + Make -logfile work again. + + + Changes: Modified: + +2 -2 trunk/src/s_log.c (File Modified) + + +nenolod 2007/02/09 22:18:23 UTC (20070209-3205) + Log: + - fix off-by-one memory overflow error. + + + Changes: Modified: + +1 -5 trunk/libcharybdis/kqueue.c (File Modified) + + +jilles 2007/02/04 15:08:04 UTC (20070204-3203) + Log: + Change handling of modularized umodes: + - keep the bitmask reserved forever to the letter, fixing + the problems when loading multiple umode modules, + unloading them and then loading them in a different order + - don't allow local users to change umodes which have + been unloaded and don't set them on new users via + default_umodes + + + Changes: Modified: + +24 -3 trunk/src/s_user.c (File Modified) + + +jilles 2007/02/04 01:59:38 UTC (20070204-3201) + Log: + Move find_umode_slot() from libcharybdis/tools.c to src/s_user.c. + + + Changes: Modified: + +1 -0 trunk/include/s_user.h (File Modified) + +0 -22 trunk/libcharybdis/tools.c (File Modified) + +0 -1 trunk/libcharybdis/tools.h (File Modified) + +22 -0 trunk/src/s_user.c (File Modified) + + +jilles 2007/02/01 01:44:31 UTC (20070201-3195) + Log: + DNSBL keyword substitution is available as of 2.1.3. + + + Changes: Modified: + +1 -1 trunk/doc/example.conf (File Modified) + + +jilles 2007/02/01 01:07:42 UTC (20070201-3183) + Log: + Change two occurances like match(userinput, target_p->name) || + match(target_p->name, userinput) to just match(userinput, + target_p->name). No client name can contain * or ? now. + + + Changes: Modified: + +1 -1 trunk/modules/m_trace.c (File Modified) + +1 -2 trunk/src/s_serv.c (File Modified) + + +jilles 2007/02/01 00:49:07 UTC (20070201-3181) + Log: + Do not try find_server() on a name find_client() has + returned NULL for, as this will always return NULL + since the removal of hostmasking. + + + Changes: Modified: + +1 -2 trunk/modules/m_pong.c (File Modified) + +0 -4 trunk/src/s_serv.c (File Modified) + + +jilles 2007/02/01 00:34:33 UTC (20070201-3179) + Log: + Remove server_exists() which checked whether the + server name existed taking hostmasking into account + and just check with find_server(); admittedly + this checks if the name is a SID but that's not + a real problem. + + + Changes: Modified: + +3 -27 trunk/modules/core/m_server.c (File Modified) + + +jilles 2007/02/01 00:19:14 UTC (20070201-3177) + Log: + Remove hash_find_masked_server(), which made it possible + to specify the full (unmasked) name of a server behind + a hostmask. As a result find_any_client() (for prefixes) + becomes equal to find_client(), so remove that too. + + + Changes: Modified: + +0 -1 trunk/include/hash.h (File Modified) + +1 -75 trunk/src/hash.c (File Modified) + +1 -1 trunk/src/parse.c (File Modified) + + +jilles 2007/02/01 00:02:35 UTC (20070201-3175) + Log: + Remove '*' from valid server name characters. + This makes it impossible to connect hostmasked servers. + (This support didn't work well anyway, was incompatible + with TS6 and we never masked ourselves.) + + + Changes: Modified: + +1 -1 trunk/src/match.c (File Modified) + + +jilles 2007/01/31 23:57:18 UTC (20070131-3173) + Log: + Change spambot, flooder and jupe joiner notices from host to orighost. + + + Changes: Modified: + +1 -1 trunk/modules/core/m_join.c (File Modified) + +2 -2 trunk/modules/core/m_message.c (File Modified) + +2 -2 trunk/src/channel.c (File Modified) + + +jilles 2007/01/28 22:13:18 UTC (20070128-3169) + Log: + Add documentation for SASL client protocol, same as atheme doc/SASL. + + + Changes: Modified: + + - trunk/doc/sasl.txt (File Added) + + +jilles 2007/01/26 18:52:11 UTC (20070126-3167) + Log: + Include real hostname in Closing Link message for unknown + connections that have sent USER. This is helpful for + k-lined users while not breaking server IP hiding. + + + Changes: Modified: + +3 -1 trunk/src/client.c (File Modified) + + +jilles 2007/01/26 16:52:29 UTC (20070126-3165) + Log: + Rerun autoconf. + + + Changes: Modified: + +29 -29 trunk/configure (File Modified) + + nenolod 2007/01/25 07:36:23 UTC (20070125-3163) Log: - nick[user@host] -> nick!user@host in kill messages. based on jilles' change in 3.0