2004-05-09 Michael Poole <mdpoole@troilus.org>
[ircu2.10.12-pk.git] / ChangeLog
index bea47241768491913d578d2071b4433630b00cfe..2495f24ea5714d13e99121cfa915e27c72eb8520 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,232 @@
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * ircd/ircd_parser.y (parse_error): Convert to being a wrapper for
+       yyerror() so that configuration errors all go to the same place.
+
+       * ircd/s_conf.c: New variables conf_error and conf_already_read.
+       conf_error is cleared by read_configuration_file() and set by
+       yyerror(); conf_already_read is set by read_configuration_file()
+       and never cleared.  Make yyerror() display error to stderr before
+       conf_already_read is set.  Make configuration errors a fatal
+       condition in init_conf().
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * ircd/Makefile.in: Pass the source directory as an argument to
+       version.c.SH so it knows where to find the source files for an
+       out-of-srcdir build.
+
+       * ircd/version.c.SH: Use that information.
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * Makefile.in: Ensure ${prefix}/include exists, since the adns
+       install puts files in that directory.  (The adns Makefile does
+       not use configure's ${includedir}.)
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * doc/readme.features: The logic for F:AUTOHIDE was removed, but
+       not its documentation.  Fix that omission.
+
+       * include/ircd_features.h, ircd/ircd_features.c: Remove the unused
+       definitions for FEATURE_AUTOHIDE.
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * doc/readme.who: Document the support for account matching and
+       display in the WHO command.
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * ircd/ircd.c (main): Move check_pid() call until after we read
+       the configuration file so that F:PPATH works correctly.
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * ircd/match.c (match): Use ToLower() instead of tolower() for
+       character comparisons.
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * ircd/s_user.c (register_user): Initialize "flag" (user's old
+       modes) passed to send_umode() so that the real set of modes are
+       sent to the user.
+       
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * ircd/m_server.c (ms_server): Apply +h/+s flags only to the new
+       server, not to a hub between us and the new server.
+
+       * ircd/ircd_relay.c (relay_directed_message): Check FLAG_SERVICE
+       on target server rather than FLAG_CHSERV (so that directed
+       messages work at all).
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * configure.in: Add checks for epoll_* system call family.
+
+       * configure: Regenerate.
+
+       * ircd/engine_epoll.c: New file; forward ported from 2.10.11
+       branch.
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * include/ircd_alloc.h: Add definitions for MyRealloc, since they
+       are needed by kqueue and epoll event engines; kill #if 0'd block.
+
+       * include/memdebug.h: Declare dbg_realloc() helper function.
+
+       * ircd/ircd_alloc.c: Implement DoRealloc() helper function.
+
+       * ircd/memdebug.c: Implement dbg_realloc() helper function.
+
+2004-05-09  Michael Poole <mdpoole@troilus.org>
+
+       * ircd/channel.c (find_no_nickchange_channel): Disallow nick
+       changes on a moderated channel with neither ops nor voice.
+
+       * ircd/s_err.c: Update ERR_BANNICKCHANGE message to match.
+
+2004-01-20  Perry Lorier <isomer@undernet.org>
+
+       * ircd/ircd_parser.y: Fixed parser to work with a more modern bison
+
+2004-01-21 Gavin Grieve <hektik@dimebox.net>
+
+       * ircd/channel.c, include/channel.h: bring forward the IsUserParting()
+         code to resolve the multiple part messages bug written by Entrope.
+
+2003-08-12 Timothy Vogelsang <net@astrolink.org>
+
+        * ircd/match.c: (match) rewrote function based on existing
+          code from the hybrid ircd -- death to goto
+
+2003-07-07  Bas Steendijk <steendijk@xs4all.nl>
+
+        * ircd/s_user.c: invalidate ban cache for user on host hiding/account
+
+2003-07-04  Bas Steendijk <steendijk@xs4all.nl>
+
+        * include/client.h, ircd/m_userhost.c, ircd/m_userip.c, ircd/m_who.c,
+        ircd/m_whois.c, ircd/whocmds.c: the same code, for "can user A see user
+        B is an oper", appeared in a lot of places. made it a define SeeOper.
+
+2003-07-04  Bas Steendijk  <steendijk@xs4all.nl>
+        * ircd/s_user.c: umode_str (user modes in N token) internal flags var
+       was not initialized to the user's flags, returned a string with
+       random modes set.
+
+2003-07-01  Bas Steendijk  <steendijk@xs4all.nl>
+
+        * ircd/m_names.c: length counter being incremented one too many
+        for each nick, resulting names reply messages are about 50 chars
+        shorter than possible. fixed.
+
+2003-06-29  Bas Steendijk  <steendijk@xs4all.nl>
+
+        * ircd/channel.c: don't ever send mode changes for local channels to
+       servers.
+
+2003-06-27  Bas Steendijk  <steendijk@xs4all.nl>
+
+        * include/channel.h, include/client.h, ircd/s_user.c, ircd/s_err.c:
+        moved the supported channel/user mode strings of the 004 reply from
+        s_err.c to the header files where the channels/user modes are
+        defined, and show or hide +Au based on OPLEVELS setting.
+
+2003-06-25  Bas Steendijk  <steendijk@xs4all.nl>
+
+        * ircd/m_burst.c: Clear topic set by netrider on burst.
+
+2003-08-05 Diane Bruce  <db@db.net>
+
+        * ircd/parse.c: Fixed the typo the fix of the typo created
+
+2003-08-01 Diane Bruce  <db@db.net>
+
+       * ircd/parse.c: Fixed typo
+
+2003-06-22  Diane Bruce  <db@db.net>
+
+       * ircd/parse.c: Completely rewritten June 2, 2003 - Dianora
+
+2003-06-22  Bas Steendijk  <steendijk@xs4all.nl>
+
+        * include/ircd_features.h, include/supported.h, ircd/ircd_features.c,
+       ircd/ircd_features.c, ircu2.10/ircd/m_join.c, doc/example.conf: 
+       Make ability to create local channels a feature which can be disabled.
+
+2003-06-22  Bas Steendijk  <steendijk@xs4all.nl>
+
+       * include/ircd_features.h, ircd/channel.c, ircd/ircd_features.c,
+       ircd/m_kick.c, doc/example.conf: Added OPLEVELS feature, which
+       makes it possible to disable the +Au/oplevels functions.
+
+2003-06-17  Alex Badea  <vampire@p16.pub.ro>
+
+       * ircd/res_adns.c: included sys/types.h, for non-Linux
+       headers
+
+>>>>>>> 1.388
+2003-03-06  Kevin L. Mitchell  <klmitch@mit.edu>
+
+       * libs/dbprim: database primitives library, including
+       flexible linked lists, auto-resizing hash tables, and sparse
+       matrices.  Has a test suite for everything but portions of
+       the sparse matrix routines (I'm lazy; someone help me write
+       them!).  Documentation generated by doxygen--feel free to
+       critique, suggest phrasing improvements, etc.
+
+2003-01-22  Kevin L. Mitchell  <klmitch@mit.edu>
+       * libs: put third-party libraries in this subdirectory.
+       Started by copying adns into it--will fix the rest and remove
+       the top-level copy later.
+
+2003-01-14  Andrew Miller <a1kmm@mware.virtualave.net>
+       * ircd/m_settime.c: Fixed a minor format string issue.
+       
+2003-01-12  Thomas Helvey <tom.helvey@cox.net>
+       * adns/src/check.c, adns/src/transmit.c, ircd/m_opmode.c,
+       ircd/motd.c, ircd/s_user.c: Cleanup warnings, fix precedence
+       bugs in transmit.c and m_opmode.c.
+
+2003-01-12  Thomas Helvey <tom.helvey@cox.net>
+       * include/class.h, include/ircd_string.h, ircd/class.c,
+       ircd/gline.c, ircd_string.c: Fix undefined order
+       of evaluation bug in gline.c, add general purpose hasher for
+       conf entries. 
+
+2003-01-11  Thomas Helvey <tom.helvey@cox.net>
+       * include/channel.h, include/ircd_alloc.h, ircd/channel.c,
+       ircd/client.c, ircd/gline.c, ircd/ircd_alloc.c,
+       ircd/ircd_events.c, ircd/ircd_log.c, ircd/ircd_parser.y,
+       ircd/ircd_snprintf.c, ircd/listener.c, ircd/m_nick.c,
+       ircd/m_opmode.c, ircd/m_whois.c, ircd/motd.c,
+       ircd/s_auth.c, ircd/s_bsd.c, ircd/uping.c: Server compiles
+       with g++ again, type safety, const correctness fixes,
+       remove C++ keywords again :/
+
+2003-01-11  Thomas Helvey <tom.helvey@cox.net>
+       * ircd/client.c, ircd/ircd_feature.c: Bugfix, the feature
+       table data was in a different order than the feature data
+       structure, which resulted in a wild index being used in
+       feature_bool. The feature_bool function didn't check it's
+       index before indexing the features array resulting in
+       a core dump on /oper.
+
+2003-01-10  Thomas Helvey <tom.helvey@cox.net>
+       * include/client.h, include/res.h, include/s_bsd.h,
+       ircd/ircd.c, ircd/list.c ircd/m_connect.c, ircd/res_adns.c,
+       ircd/res_libresolv.c, ircd/s_auth.c, ircd/s_bsd.c, ircd/s_conf.c:
+       Remove resolver cache wart, change hostent representation, cleanup
+       resolver clients.
+
+2003-01-10  Thomas Helvey <tom.helvey@cox.net>
+       * ircd/map.c, ircd/Makefile.in, include/map.h: Remove 
+        HEAD_IN_SAND macros to get server to build, rebuild dependencies.
+
 2003-01-08  Fredrik Soderblom <froo@quakenet.org>
         * ircd/s_err.c, ircd/s_user.c (hide_hostmask): Simplify
         RPL_HOSTHIDDEN and the use of it.