Update rx/Makefile.in for current automake.
[srvx.git] / ChangeLog
index a11f7191f6ae4548bf1256d7ca986f896bcc6f4f..a482643a456078ba90c73ab1564a6c4989f3cb52 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,415 @@
 # arch-tag: automatic-ChangeLog--srvx@srvx.net--2005-srvx/srvx--devo--1.3
 #
 
+2005-12-23 03:14:44 GMT        Michael Poole <mdpoole@troilus.org>     patch-36
+
+    Summary:
+      Update rx/Makefile.in for current automake.
+    Revision:
+      srvx--devo--1.3--patch-36
+
+    rx/Makefile.in: Update to use the same version of automake as the
+        project's other Makefile.in files.
+
+    modified files:
+     ChangeLog rx/Makefile.in
+
+
+2005-12-23 03:11:09 GMT        Michael Poole <mdpoole@troilus.org>     patch-35
+
+    Summary:
+      Default to not trimming users on vacation.
+    Revision:
+      srvx--devo--1.3--patch-35
+
+    chanserv.c (cmd_trim_users): New argument to indicate whether users on
+        vacation should be included.
+      (cmd_trim): Parse an extra option to control that argument.
+    
+    chanserv.help: Document this change.
+
+    modified files:
+     ChangeLog src/chanserv.c src/chanserv.help
+
+
+2005-12-23 03:06:55 GMT        Michael Poole <mdpoole@troilus.org>     patch-34
+
+    Summary:
+      Update config.guess and config.sub
+    Revision:
+      srvx--devo--1.3--patch-34
+
+    config.guess: Update to support newer targets.
+    config.sub: Likewise.
+
+    modified files:
+     ChangeLog config.guess config.sub
+
+
+2005-11-17 20:43:26 GMT        Michael Poole <mdpoole@troilus.org>     patch-33
+
+    Summary:
+      Fixes for LP64 models; announce IPv6 support.
+    Revision:
+      srvx--devo--1.3--patch-33
+
+    src/alloc-slab.c (SMALL_CUTOFF): Adjust to a multiple of 8.
+    
+    src/alloc-srvx.c (srvx_malloc): Fix format string for LP64.
+    
+    src/md5.h (UINT4): Fix typedef for LP64.
+    
+    src/opserv.c (cmd_warn): Fix whitespace.
+    
+    src/proto-p10.c (irc_server): Announce IPv6 support.
+
+    modified files:
+     ChangeLog src/alloc-slab.c src/alloc-srvx.c src/md5.h
+     src/opserv.c src/proto-p10.c
+
+
+2005-11-01 00:37:44 GMT        Michael Poole <mdpoole@troilus.org>     patch-32
+
+    Summary:
+      Avoid leaking information through ChanServ's ban matching.
+    Revision:
+      srvx--devo--1.3--patch-32
+
+    src/common.h (user_matches_glob): Convert last argument to be flags.
+    
+    src/tools.c (user_matches_glob): Reorder tests to properly implement
+        the MATCH_VISIBLE flag.
+    
+    src/chanserv.c: Update callers of user_matches_glob() to set
+        the MATCH_VISIBLE flag (in addition to MATCH_USENICK).
+    
+    src/opserv.c: Update callers of user_matches_glob() to pass the
+        MATCH_USENICK flag.
+
+    modified files:
+     ChangeLog src/chanserv.c src/common.h src/opserv.c src/tools.c
+
+
+2005-11-01 00:23:14 GMT        Michael Poole <mdpoole@troilus.org>     patch-31
+
+    Summary:
+      Handle default oplevels.
+    Revision:
+      srvx--devo--1.3--patch-31
+
+    src/chanserv.c (cmd_mode): Calculate base oplevel as 1 plus one point
+        for each access level below owner.
+      (chan_opt_modes): Add new argument for mod_chanmode_parse().
+      (chanserv_conf_read): Likewise.
+      (chanserv_channel_read): Likewise.
+    
+    src/hash.c (AddChannel): Likewise.
+      (AddChannelUser): Set oplevel by default.
+    
+    src/hash.h (MAXOPLEVEL): New define value.
+      (modeNode): Shrink modes and oplevel fields.
+    
+    src/opserv.c (cmd_chaninfo): Fix indentation; show oplevel after
+        nickname rather than before it.
+    
+    src/proto.h (mod_chanmode_parse): Declare new parameter.
+    
+    src/proto-bahamut.c (mod_chanmode_parse): Add new parameter (and
+        ignore it).
+    
+    src/proto-common.c (mod_chanmode): Find the default oplevels for
+        parsing the mode change.
+    
+    src/proto-p10.c (create_desc): Remove oplevel field.
+      (join_helper): Do not try to set oplevel for new modeNode.
+      (parse_foreach): Do not bother parsing oplevels in JOIN, since they
+        are no longer used.
+      (mod_chanmode_parse): Add new parameter and use it to determine the
+        oplevel to set when a valid oplevel one is not specified.
+
+    modified files:
+     ChangeLog src/chanserv.c src/hash.c src/hash.h src/opserv.c
+     src/proto-bahamut.c src/proto-common.c src/proto-p10.c
+     src/proto.h
+
+
+2005-10-13 02:20:55 GMT        Michael Poole <mdpoole@troilus.org>     patch-30
+
+    Summary:
+      Default ?block (etc) to G-line by IP; fix a buffer issue.
+    Revision:
+      srvx--devo--1.3--patch-30
+
+    src/opserv.c (opserv_block): Rewrite to block by IP rather than
+        hostname.
+      (opserv_new_user_check): Avoid overrunning the target buffer.
+
+    modified files:
+     ChangeLog src/opserv.c
+
+
+2005-10-08 14:56:31 GMT        Michael Poole <mdpoole@troilus.org>     patch-29
+
+    Summary:
+      Initial oplevel support.
+    Revision:
+      srvx--devo--1.3--patch-29
+
+    src/proto-p10.c: Fix a few bugs and compile errors in oplevel code.
+    
+    Patches applied:
+    
+     * sp@gamesurge.net--2005/srvx--sp--1.3--patch-1
+       Oplevel support
+    
+     * sp@gamesurge.net--2005/srvx--sp--1.3--patch-2
+       Oplevel support (part 2)
+
+    modified files:
+     ChangeLog src/hash.c src/hash.h src/opserv.c
+     src/proto-common.c src/proto-p10.c src/proto.h
+
+    new patches:
+     sp@gamesurge.net--2005/srvx--sp--1.3--patch-1
+     sp@gamesurge.net--2005/srvx--sp--1.3--patch-2
+
+
+2005-10-08 14:33:12 GMT        Michael Poole <mdpoole@troilus.org>     patch-28
+
+    Summary:
+      Add IPv6 support.
+    Revision:
+      srvx--devo--1.3--patch-28
+
+    configure.in: Check for struct sockaddr.sa_len and struct addrinfo.
+        Also check for freeaddrinfo, getaddrinfo and getnameinfo.
+    
+    src/common.h: Define irc_in_addr and macros to operate on it.  Declare
+        irc_ntop(), irc_ntop_mask(), irc_pton(), irc_check_mask() and
+        irc_ntoa().  Remove declaration for parse_ipmask() and undefine
+        INADDR_NONE, INADDR_LOOPBACK and MATCH_IPMASK().
+    
+    src/compat.h (struct addrinfo): Define if it and some flags if not
+        defined by the system.
+      (getaddrinfo): Declare if necessary.
+      (getnameinfo): Likewise.
+      (freeaddrinfo): Likewise.
+    
+    src/compat.c (memcpy): Do not try to fall back onto bcopy.
+      (getaddrinfo): Define if it is not defined by the system.
+      (freeaddrinfo): Likewise.
+    
+    src/gline.c (gline_alternate_target): Gut in preparation of a
+        necessary rewrite.  Blah.
+    
+    src/hash.h (struct userNode): Change type of ip field.
+    
+    src/ioset.c (ioset_connect): Update to support non-IPv4 protocols.
+    
+    src/main.c (uplink_insert): Update to support non-IPv4 protocols.
+    
+    src/mod-snoop.c (snoop_new_user): Use irc_ntoa() instead of inet_ntoa().
+    
+    src/mod-sockcheck.c (sockcheck_cache_info): Update address field type
+        and length of hostname field.
+      (sockcheck_conf): Update type of local_addr.
+      (sockcheck_issue_gline): Update to use irc_ntop().
+      (expand_var): Get client IPv4 address from its new place.
+      (sockcheck_decide): Do not print the IP twice.
+      (sockcheck_begin_test): Remove unnecessary typecast.
+      (sockcheck_start_client): Do not print the IP twice.
+      (sockcheck_queue_address): Use irc_in_addr_t and irc_ntoa() to form
+        the target hostname.
+      (cmd_hostscan): Update manipulation functions to use new macros and
+        functions for irc_in_addr_t.
+      (cmd_clearhost): Likewise.
+      (sockcheck_new_user): Likewise.
+      (sockcheck_read_conf): Use getaddrinfo() instead of IPv4-only
+        functions.
+    
+    src/nickserv.c (cmd_register): Use newer validity checks for IP.
+    
+    src/opserv.c (IDENT_DATA): Use irc_ntoa() instead of inet_ntoa().
+      (struct opservDiscrim): Update ip_mask and ip_mask_bits type.
+      (cmd_whois): Use irc_ntoa() instead of inet_ntoa().
+      (opserv_new_user_check): Use irc_ntop() instead of inet_ntoa() and
+        update to newer validity check macros.
+      (opserv_user_cleanup): Use irc_ntop() instead of inet_ntoa().
+      (cmd_addtrust): Update to irc_in_addr_t and its functions.
+      (foreach_matching_user): Use irc_pton() instead of the mess that
+        existed before.
+      (opserv_discrim_create): Use irc_pton() instead of parse_ipmask().
+      (discrim_match): Use irc_check_mask() instead of MATCH_IPMASK(), and
+        remove ip_mask_str check.
+      (opserv_discrim_search): Decide whether an IP match is fully
+        qualified based on ip_mask_bits instead of ip_mask_str.
+      (trace_domains_func): Add IPv6 support.
+      (opserv_staff_alert): Update to new IP validity check macro.
+    
+    src/proto.h (struct uplinkNode): Fix type of bind_addr field.
+    
+    src/proto-bahamut.c (AddUser): Use irc_in_addr_t.
+      (AddService): Default to an all-zero IP instead of loopback.
+      (AddClone): Likewise.
+      (irc_user): Use new layout for IPv4 in irc_in_addr_t.
+      (cmd_nick): Likewise.
+    
+    src/proto-common.c (create_socket_client): Remove unnecessary
+        typecast.
+      (generate_hostmask): Update to use irc_in_addr_t and support
+        functions instead of IPv4-specific things.
+    
+    src/proto-p10.c (irc_p10_pton): New function.
+      (irc_p10_ntop): New function.
+      (irc_user): Use irc_p10_ntop().
+      (AddClone): Use irc_p10_pton().
+    
+    src/tools.c (ctype): New array holding values of characters as hex.
+      (irc_ntop): New function.
+      (irc_ntop_mask): New function.
+      (irc_pton_ip4): New helper function.
+      (irc_pton): New function.
+      (irc_ntoa): New function.
+      (irc_check_mask): New function.
+      (user_matches_glob): Use irc_ntoa() instead of inet_ntoa().
+      (parse_ipmask): Delete this function.
+
+    modified files:
+     ChangeLog configure.in src/common.h src/compat.c src/compat.h
+     src/gline.c src/hash.h src/ioset.c src/main.c src/mod-snoop.c
+     src/mod-sockcheck.c src/nickserv.c src/opserv.c
+     src/proto-bahamut.c src/proto-common.c src/proto-p10.c
+     src/proto.h src/tools.c
+
+
+2005-10-07 02:51:12 GMT        Michael Poole <mdpoole@troilus.org>     patch-27
+
+    Summary:
+      Fix compiler warnings on AMD64 Linux.
+    Revision:
+      srvx--devo--1.3--patch-27
+
+    src/gline.c (gline_alternate_target): Typecast format field precision
+        argument.
+    
+    src/helpfile.c (helpfile_eval_identifier): Likewise.
+      (helpfile_eval_atomicexpr): Likewise.
+      (helpfile_eval_expr): Likewise.
+      (helpfile_eval_condition): Likewise.
+    
+    src/log.c (log_audit): Change typecast used to make types compatible.
+    
+    src/main.c (set_item_rlimit): Use long instead of int as contained value.
+    
+    src/sendmail.c (send_flowed_text): Typecast format field precision
+        argument.
+
+    modified files:
+     ChangeLog src/gline.c src/helpfile.c src/log.c src/main.c
+     src/sendmail.c
+
+
+2005-08-14 01:34:04 GMT        Michael Poole <mdpoole@troilus.org>     patch-26
+
+    Summary:
+      Improve channel merging and restrict channel age display.
+    Revision:
+      srvx--devo--1.3--patch-26
+
+    src/chanserv.c (merge_data): Merge registered and owner-transfer
+        timestamps, may_opchan flag, and max visitor count.
+      (cmd_info): Only show channel age if the user is privileged.
+
+    modified files:
+     ChangeLog src/chanserv.c
+
+
+2005-07-19 18:31:26 GMT        Michael Poole <mdpoole@troilus.org>     patch-25
+
+    Summary:
+      Properly check alerts based on numchannels criteria
+    Revision:
+      srvx--devo--1.3--patch-25
+
+    src/opserv.c (opserv_add_user_alert): Channel alerts also include ones
+      with non-zero min_channels.  Allow an alert to be both channel-based
+      and nick-based.
+
+    modified files:
+     ChangeLog src/opserv.c
+
+
+2005-07-19 18:18:48 GMT        Michael Poole <mdpoole@troilus.org>     patch-24
+
+    Summary:
+      Fix gcc-4.0 compile warnings and errors.
+    Revision:
+      srvx--devo--1.3--patch-24
+
+    configure.in: Make sure socklen_t is defined.
+    
+    src/chanserv.c (bad_channel_ban): Make victimCount unsigned.
+    
+    src/ioset.c (ioset_run): Fifth argument to getsockopt() should be
+      socklen_t.
+    
+    src/ioset.h (clock_skew): Undeclare; it is defined as static.
+    
+    src/nickserv.c (is_secure_password): Create appropriately typed local
+      variable for third argument of dict_find().
+    
+    src/opserv.c (opserv_bad_channel): Likewise.
+    
+    src/proto-p10.c (call_oper_funcs): Declare at file scope rather than
+      locally to mod_usermode() function.
+    
+    src/proto.h (dead_users): Undeclare; it is defined as static.
+    
+    src/saxdb.c (saxdb_write_int): Fix type of string buffer.
+
+    modified files:
+     ChangeLog configure.in languages/validate.pl src/chanserv.c
+     src/ioset.c src/ioset.h src/nickserv.c src/opserv.c
+     src/proto-p10.c src/proto.h src/saxdb.c
+     {arch}/srvx/srvx--devo/srvx--devo--1.3/srvx@srvx.net--2004-srvx/patch-log/patch-71
+     {arch}/srvx/srvx--devo/srvx--devo--1.3/srvx@srvx.net--2004-srvx/patch-log/patch-76
+     {arch}/srvx/srvx--devo/srvx--devo--1.3/srvx@srvx.net--2004-srvx/patch-log/patch-77
+     {arch}/srvx/srvx--devo/srvx--devo--1.3/srvx@srvx.net--2004-srvx/patch-log/patch-81
+     {arch}/srvx/srvx--devo/srvx--devo--1.3/srvx@srvx.net--2004-srvx/patch-log/patch-84
+     {arch}/srvx/srvx--devo/srvx--devo--1.3/srvx@srvx.net--2005-srvx/patch-log/patch-22
+     {arch}/srvx/srvx--devo/srvx--devo--1.3/srvx@srvx.net--2005-srvx/patch-log/patch-23
+
+
+2005-07-04 00:37:07 GMT        Zoot <zoot@gamesurge.net>       patch-23
+
+    Summary:
+      Fix match_ircglob() and globtest
+    Revision:
+      srvx--devo--1.3--patch-23
+
+     * Fix a reversed test in match_ircglob() and make globtest compiles again.
+
+    modified files:
+     ChangeLog src/globtest.c src/tools.c
+
+
+2005-06-01 19:05:39 GMT        Zoot <zoot@gamesurge.net>       patch-22
+
+    Summary:
+      Integrate Global "from" option; reorganize code
+    Revision:
+      srvx--devo--1.3--patch-22
+
+     * src/global.c: Integrate SF.net patch #1211520 (from bruder2k) with a small
+       bug fix; this patch adds a "from" option to Global notices and messages.
+    
+     * src/global.c, src/global.h: Make struct globalMessage private; cache text
+       form of message's post date/time to avoid repeated strftime() calls.
+
+    modified files:
+     ChangeLog src/global.c src/global.h src/global.help
+
+
 2005-05-30 15:14:56 GMT        Michael Poole <mdpoole@troilus.org>     patch-21
 
     Summary: