bf3da83f9b6c6bd0b3881d0e49d41e3c6e41b24e
[ircu2.10.12-pk.git] / ChangeLog
1 2004-05-10  Michael Poole <mdpoole@troilus.org>
2
3         Forward port of asuka-topicburst.patch from Quakenet's "Asuka"
4         patch set.
5
6         * include/ircd_features.h (FEAT_TOPIC_BURST): Add new feature.
7
8         * ircd/channel.c (send_channel_modes): If F:TOPIC_BURST:TRUE,
9         also send a TOPIC to the peer.
10
11         * ircd/ircd_features.c (FEAT_TOPIC_BURST): Add new boolean
12         feature, defaulting to FALSE.
13
14         * ircd/m_topic.c (do_settopic): Add argument for topic timestamp,
15         and allow F:HIS_BANWHO to hide the originator of the topic.
16         (ms_topic): Parse optional timestamp arguments to TOPIC, and use
17         them to decide whether to ignore the topic.
18
19 2004-05-10  Michael Poole <mdpoole@troilus.org>
20
21         Forward port of delayed-join.patch from Quakenet's "Asuka" patch
22         set (which was a port of code I wrote for the other ircu).
23
24         * include/channel.h (CHFL_DELAYED): New membership flag.
25         (MODE_DELJOINS, MODE_WASDELJOINS): New channel modes.
26         (infochanmodes): Add +D to list of supported channel modes.
27         (IsDelayedJoin, SetDelayedJoin, ClearDelayedJoin): New macros.
28         (member_can_send_to_channel, client_can_send_to_channel): Add
29         "reveal" parameter to indicate whether a request should cause
30         a join-delayed user to become visible.
31         (RevealDelayedJoin, CheckDelayedJoins): New functions.
32
33         * include/numeric.h (RPL_DELNAMREPLY): New numeric.
34         
35         * include/s_user.h (NAMES_DEL): New flag for do_names().
36
37         * include/supported.h (FEATURESVALUES2): Add +D to list of
38         supported channel modes.
39
40         * ircd/channel.c (remove_member_from_channel,
41         member_can_send_to_channel, client_can_send_to_channel,
42         joinbuf_join): Handle join-delayed users.
43         (channel_modes, modebuf_flush_int, modebuf_mode, modebuf_flush,
44         modebuf_extract, mode_process_clients, mode_parse_mode,
45         mode_parse): Handle delayed-join channels.
46         (RevealDelayedJoin, CheckDelayedJoins): New functions.
47
48         * ircd/ircd_relay.c (relay_channel_message, relay_channel_notice,
49         server_relay_channel_message, server_relay_channel_notice): Add
50         argument for "reveal" parameter to client_can_send_to_channel().
51
52         * ircd/m_burst.c (ms_burst): Support MODE_DELJOINS channels.
53
54         * ircd/m_clearmode.c (do_clearmode): Support clearing mode +D.
55
56         * ircd/m_join.c (join0): Pass the CHFL_DELAYED flag when parting a
57         channel with JOIN 0.
58
59         * ircd/m_kick.c (m_kick): For join-delayed members, only send the
60         KICK to the kicker and kickee.  Then check whether +d can be
61         removed.
62
63         * ircd/m_names.c (do_names): Show join-delayed users if and only
64         if the NAMES_DEL flag is given.  If NAMES_DEL is given, also use
65         RPL_DELNAMREPLY instead of RPL_NAMREPLY.
66         (m_names): If NAMES -D, pass NAMES_DEL to do_names().
67
68         * ircd/m_part.c (m_part, ms_part): Add "reveal" argument for
69         member_can_send_to_channel().  Set CHFL_DELAYED join in joinbuf if
70         the user is join-delayed.
71
72         * ircd/m_quit.c (m_quit): Handle join-delayed users and new
73         argument for member_can_send_to_channel().
74
75         * ircd/m_topic.c (do_settopic): If a join-delayed channel member
76         changes the topic, reveal the member.
77
78         * ircd/m_wallchops.c (m_wallchops, ms_wallchops): Add argument for
79         "reveal" parameter to client_can_send_to_channel().
80
81         * ircd/m_wallvoices.c (m_wallvoices, ms_wallvoices): Likewise.
82
83         * ircd/m_who.c (m_who): Skip join-delayed members where we skip
84         zombies.
85
86         * ircd/m_whois.c (do_whois): Use '<' as a prefix for join-delayed
87         users.  Use slightly more efficient macros rather than function
88         calls to test for ops and voice.
89
90         * ircd/s_err.c (RPL_DELNAMREPLY): New numeric response string.
91
92         * ircd/s_user.c (hide_hostmask): For users with no modes in a
93         join-delayed channel, do not send JOIN to other members after the
94         QUIT :Registered.
95
96         * ircd/send.c (sendcmdto_common_channels_butone): Skip
97         join-delayed users where we skip zombies.
98         
99 2004-05-10  Michael Poole <mdpoole@troilus.org>
100
101         * ircd/ircd_events.c: Actually reference and try to use the epoll
102         event engine.  Omitted from yesterday's commit.
103
104 2004-05-09  Michael Poole <mdpoole@troilus.org>
105
106         Forward port of Paul "Zoot" Chang's pseudo-command.patch and
107         pseudo-support.patch.
108
109         * doc/example.conf: Illustrate how to use the feature.
110
111         * include/handlers.h (m_pseudo): Declare new handler function.
112
113         * include/ircd_features.h (HIS_STATS_R): Add a feature to control
114         user visibility of the pseudo-commands.
115
116         * include/msg.h: Add flag and field for the extra information used
117         to select a pseudo-command's target.
118
119         * include/numeric.h (RPL_STATSRLINE, ERR_SERVICESDOWN): Add
120         definitions.
121
122         * include/parse.h (register_mapping, unregister_mapping): Declare.
123
124         * include/s_conf.h (struct nick_host, struct s_map,
125         GlobalServiceMapList): Define.
126
127         * ircd/Makefile.in: Add m_pseudo.c to IRCD_SRC.  Add generated
128         files to "make depend" dependency list.  Update dependencies.
129
130         * ircd/ircd_features.c (HIS_STATS_R): Define feature type and
131         default value.
132
133         * ircd/ircd_lexer.l (pseudo, prepend): Recognize new tokens.
134
135         * ircd/ircd_parser.y: Support "Pseudo" configuration blocks.
136
137         * ircd/parse.c (msgtab): Add initializer for field "extra" to all
138         commands.
139         (msg_tree_insert, msg_tree_remove, register_mapping,
140         unregister_mapping): New functions.
141         (parse_client): Implement MFLG_EXTRA extra argument passing.
142
143         * ircd/s_conf.c (GlobalServiceMapList): New variable.
144
145         * ircd/s_err.c (RPL_STATRLINE, ERR_SERVICESDOWN): Add format
146         strings for new numeric responses.
147
148         * ircd/s_stats.c (stats_mapping): New function.
149         (statsinfo): Add entry for /stats R and make old /stats r entry
150         case-sensitive.
151         
152 2004-05-09  Michael Poole <mdpoole@troilus.org>
153
154         * ircd/ircd_parser.y (parse_error): Convert to being a wrapper for
155         yyerror() so that configuration errors all go to the same place.
156
157         * ircd/s_conf.c: New variables conf_error and conf_already_read.
158         conf_error is cleared by read_configuration_file() and set by
159         yyerror(); conf_already_read is set by read_configuration_file()
160         and never cleared.  Make yyerror() display error to stderr before
161         conf_already_read is set.  Make configuration errors a fatal
162         condition in init_conf().
163
164 2004-05-09  Michael Poole <mdpoole@troilus.org>
165
166         * ircd/Makefile.in: Pass the source directory as an argument to
167         version.c.SH so it knows where to find the source files for an
168         out-of-srcdir build.
169
170         * ircd/version.c.SH: Use that information.
171
172 2004-05-09  Michael Poole <mdpoole@troilus.org>
173
174         * Makefile.in: Ensure ${prefix}/include exists, since the adns
175         install puts files in that directory.  (The adns Makefile does
176         not use configure's ${includedir}.)
177
178 2004-05-09  Michael Poole <mdpoole@troilus.org>
179
180         * doc/readme.features: The logic for F:AUTOHIDE was removed, but
181         not its documentation.  Fix that omission.
182
183         * include/ircd_features.h, ircd/ircd_features.c: Remove the unused
184         definitions for FEATURE_AUTOHIDE.
185
186 2004-05-09  Michael Poole <mdpoole@troilus.org>
187
188         * doc/readme.who: Document the support for account matching and
189         display in the WHO command.
190
191 2004-05-09  Michael Poole <mdpoole@troilus.org>
192
193         * ircd/ircd.c (main): Move check_pid() call until after we read
194         the configuration file so that F:PPATH works correctly.
195
196 2004-05-09  Michael Poole <mdpoole@troilus.org>
197
198         * ircd/match.c (match): Use ToLower() instead of tolower() for
199         character comparisons.
200
201 2004-05-09  Michael Poole <mdpoole@troilus.org>
202
203         * ircd/s_user.c (register_user): Initialize "flag" (user's old
204         modes) passed to send_umode() so that the real set of modes are
205         sent to the user.
206         
207 2004-05-09  Michael Poole <mdpoole@troilus.org>
208
209         * ircd/m_server.c (ms_server): Apply +h/+s flags only to the new
210         server, not to a hub between us and the new server.
211
212         * ircd/ircd_relay.c (relay_directed_message): Check FLAG_SERVICE
213         on target server rather than FLAG_CHSERV (so that directed
214         messages work at all).
215
216 2004-05-09  Michael Poole <mdpoole@troilus.org>
217
218         * configure.in: Add checks for epoll_* system call family.
219
220         * configure: Regenerate.
221
222         * ircd/engine_epoll.c: New file; forward ported from 2.10.11
223         branch.
224
225 2004-05-09  Michael Poole <mdpoole@troilus.org>
226
227         * include/ircd_alloc.h: Add definitions for MyRealloc, since they
228         are needed by kqueue and epoll event engines; kill #if 0'd block.
229
230         * include/memdebug.h: Declare dbg_realloc() helper function.
231
232         * ircd/ircd_alloc.c: Implement DoRealloc() helper function.
233
234         * ircd/memdebug.c: Implement dbg_realloc() helper function.
235
236 2004-05-09  Michael Poole <mdpoole@troilus.org>
237
238         * ircd/channel.c (find_no_nickchange_channel): Disallow nick
239         changes on a moderated channel with neither ops nor voice.
240
241         * ircd/s_err.c: Update ERR_BANNICKCHANGE message to match.
242
243 2004-01-20  Perry Lorier <isomer@undernet.org>
244
245         * ircd/ircd_parser.y: Fixed parser to work with a more modern bison
246
247 2004-01-21 Gavin Grieve <hektik@dimebox.net>
248
249         * ircd/channel.c, include/channel.h: bring forward the IsUserParting()
250           code to resolve the multiple part messages bug written by Entrope.
251
252 2003-08-12 Timothy Vogelsang <net@astrolink.org>
253
254         * ircd/match.c: (match) rewrote function based on existing
255           code from the hybrid ircd -- death to goto
256
257 2003-07-07  Bas Steendijk <steendijk@xs4all.nl>
258
259         * ircd/s_user.c: invalidate ban cache for user on host hiding/account
260
261 2003-07-04  Bas Steendijk <steendijk@xs4all.nl>
262
263         * include/client.h, ircd/m_userhost.c, ircd/m_userip.c, ircd/m_who.c,
264         ircd/m_whois.c, ircd/whocmds.c: the same code, for "can user A see user
265         B is an oper", appeared in a lot of places. made it a define SeeOper.
266
267 2003-07-04  Bas Steendijk  <steendijk@xs4all.nl>
268         * ircd/s_user.c: umode_str (user modes in N token) internal flags var
269         was not initialized to the user's flags, returned a string with
270         random modes set.
271
272 2003-07-01  Bas Steendijk  <steendijk@xs4all.nl>
273
274         * ircd/m_names.c: length counter being incremented one too many
275         for each nick, resulting names reply messages are about 50 chars
276         shorter than possible. fixed.
277
278 2003-06-29  Bas Steendijk  <steendijk@xs4all.nl>
279
280         * ircd/channel.c: don't ever send mode changes for local channels to
281         servers.
282
283 2003-06-27  Bas Steendijk  <steendijk@xs4all.nl>
284
285         * include/channel.h, include/client.h, ircd/s_user.c, ircd/s_err.c:
286         moved the supported channel/user mode strings of the 004 reply from
287         s_err.c to the header files where the channels/user modes are
288         defined, and show or hide +Au based on OPLEVELS setting.
289
290 2003-06-25  Bas Steendijk  <steendijk@xs4all.nl>
291
292         * ircd/m_burst.c: Clear topic set by netrider on burst.
293
294 2003-08-05 Diane Bruce  <db@db.net>
295
296         * ircd/parse.c: Fixed the typo the fix of the typo created
297
298 2003-08-01 Diane Bruce  <db@db.net>
299
300         * ircd/parse.c: Fixed typo
301
302 2003-06-22  Diane Bruce  <db@db.net>
303
304         * ircd/parse.c: Completely rewritten June 2, 2003 - Dianora
305
306 2003-06-22  Bas Steendijk  <steendijk@xs4all.nl>
307
308         * include/ircd_features.h, include/supported.h, ircd/ircd_features.c,
309         ircd/ircd_features.c, ircu2.10/ircd/m_join.c, doc/example.conf: 
310         Make ability to create local channels a feature which can be disabled.
311
312 2003-06-22  Bas Steendijk  <steendijk@xs4all.nl>
313
314         * include/ircd_features.h, ircd/channel.c, ircd/ircd_features.c,
315         ircd/m_kick.c, doc/example.conf: Added OPLEVELS feature, which
316         makes it possible to disable the +Au/oplevels functions.
317
318 2003-06-17  Alex Badea  <vampire@p16.pub.ro>
319
320         * ircd/res_adns.c: included sys/types.h, for non-Linux
321         headers
322
323 >>>>>>> 1.388
324 2003-03-06  Kevin L. Mitchell  <klmitch@mit.edu>
325
326         * libs/dbprim: database primitives library, including
327         flexible linked lists, auto-resizing hash tables, and sparse
328         matrices.  Has a test suite for everything but portions of
329         the sparse matrix routines (I'm lazy; someone help me write
330         them!).  Documentation generated by doxygen--feel free to
331         critique, suggest phrasing improvements, etc.
332
333 2003-01-22  Kevin L. Mitchell  <klmitch@mit.edu>
334         * libs: put third-party libraries in this subdirectory.
335         Started by copying adns into it--will fix the rest and remove
336         the top-level copy later.
337
338 2003-01-14  Andrew Miller <a1kmm@mware.virtualave.net>
339         * ircd/m_settime.c: Fixed a minor format string issue.
340         
341 2003-01-12  Thomas Helvey <tom.helvey@cox.net>
342         * adns/src/check.c, adns/src/transmit.c, ircd/m_opmode.c,
343         ircd/motd.c, ircd/s_user.c: Cleanup warnings, fix precedence
344         bugs in transmit.c and m_opmode.c.
345
346 2003-01-12  Thomas Helvey <tom.helvey@cox.net>
347         * include/class.h, include/ircd_string.h, ircd/class.c,
348         ircd/gline.c, ircd_string.c: Fix undefined order
349         of evaluation bug in gline.c, add general purpose hasher for
350         conf entries. 
351
352 2003-01-11  Thomas Helvey <tom.helvey@cox.net>
353         * include/channel.h, include/ircd_alloc.h, ircd/channel.c,
354         ircd/client.c, ircd/gline.c, ircd/ircd_alloc.c,
355         ircd/ircd_events.c, ircd/ircd_log.c, ircd/ircd_parser.y,
356         ircd/ircd_snprintf.c, ircd/listener.c, ircd/m_nick.c,
357         ircd/m_opmode.c, ircd/m_whois.c, ircd/motd.c,
358         ircd/s_auth.c, ircd/s_bsd.c, ircd/uping.c: Server compiles
359         with g++ again, type safety, const correctness fixes,
360         remove C++ keywords again :/
361
362 2003-01-11  Thomas Helvey <tom.helvey@cox.net>
363         * ircd/client.c, ircd/ircd_feature.c: Bugfix, the feature
364         table data was in a different order than the feature data
365         structure, which resulted in a wild index being used in
366         feature_bool. The feature_bool function didn't check it's
367         index before indexing the features array resulting in
368         a core dump on /oper.
369
370 2003-01-10  Thomas Helvey <tom.helvey@cox.net>
371         * include/client.h, include/res.h, include/s_bsd.h,
372         ircd/ircd.c, ircd/list.c ircd/m_connect.c, ircd/res_adns.c,
373         ircd/res_libresolv.c, ircd/s_auth.c, ircd/s_bsd.c, ircd/s_conf.c:
374         Remove resolver cache wart, change hostent representation, cleanup
375         resolver clients.
376
377 2003-01-10  Thomas Helvey <tom.helvey@cox.net>
378         * ircd/map.c, ircd/Makefile.in, include/map.h: Remove 
379         HEAD_IN_SAND macros to get server to build, rebuild dependencies.
380
381 2003-01-08  Fredrik Soderblom <froo@quakenet.org>
382         * ircd/s_err.c, ircd/s_user.c (hide_hostmask): Simplify
383         RPL_HOSTHIDDEN and the use of it.
384
385 2003-01-07  Kevin L Mitchell  <klmitch@mit.edu>
386
387         * BUGS: removed from distribution
388
389         * ChangeLog.07: moved into doc/history
390
391         * ChangeLog.10: moved into doc/history
392
393         * INSTALL: pulled up from u2.10.11.04
394
395         * README: pulled up from u2.10.11.04
396
397         * README.FreeBSD: pulled up from u2.10.11.04
398
399         * README.Solaris: pulled up from u2.10.11.04
400
401         * RELEASE.NOTES: add sysctl note from u2.10.11.04
402
403         * TODO: removed from distribution
404
405         * configure.in: add extra check for res_mkquery; remove
406         --disable-headinsand since it no longer has any effect; pull up
407         "Enable" vs. "Disable" changes from u2.10.11.04
408
409         * doc/readme.asll: pulled up from u2.10.11.04
410
411         * doc/readme.features: pull up missing documentation, including a
412         couple of corrections
413
414         * doc/readme.log: correct text to read FACILITY instead of SYSLOG
415         in the documentation for configuring syslog facility
416
417         * include/channel.h: declare IsInvited()
418
419         * include/handlers.h: do some minor reorderings
420
421         * include/ircd_defs.h: remove deprecated NETWORK and URL_CLIENTS
422         #define's
423
424         * include/ircd_policy.h: removed from the distribution
425
426         * include/jupe.h: declare jupe_memory_count()
427
428         * include/msgq.h: remove MsgCounts structure
429
430         * include/numeric.h: add a blank line after RPL_STATSQLINE; add
431         RPL_HOSTHIDDEN
432
433         * include/s_stats.h: include ircd_features.h for definition of the
434         enum; remove extraneous declarations
435
436         * ircd/Makefile.in: add LDFLAGS to table_gen
437
438         * ircd/engine_poll.c: remove commented-out assertion
439
440         * ircd/ircd.c: include s_stats.h and call stats_init()
441
442         * ircd/ircd_features.c: feature names have to be case-sensitive
443         because of some of the HIS features
444
445         * ircd/ircd_relay.c: reorder includes
446
447         * ircd/m_account.c: include string.h for strlen()
448
449         * ircd/m_clearmode.c: remove extraneous clean_channelname(); make
450         sure to refer to chname, not parv[1]
451
452         * ircd/m_create.c: remove the broken code that squits servers that
453         are >5 minutes fast; fix "badop || CHFL_CHANOP" bug that caused op
454         desyncs
455
456         * ircd/m_gline.c: if it's a server, force the gline; don't
457         gline_find() before determining if the oper had the privilege
458
459         * ircd/m_kick.c: kicks by servers should appear to be from the
460         local server thanks to HIS
461
462         * ircd/m_lusers.c: needs ircd_features.h, not ircd_policy.h
463
464         * ircd/m_map.c: needs ircd_features.h, not ircd_policy.h
465
466         * ircd/m_nick.c: added an assertion and some explanatory comments
467         pulled up from u2.10.11.04
468
469         * ircd/m_opmode.c: no longer requiring oper to be on the channel;
470         search for quarantines before allowing ops
471
472         * ircd/m_privmsg.c: one character typo that probably means nothing
473
474         * ircd/m_settime.c: add back comments I left in the code
475
476         * ircd/m_squit.c: remove protocol_violation() notices
477
478         * ircd/m_userhost.c: return realhost if user is an oper
479
480         * ircd/m_wallvoices.c: only m_wallvoices() should add a +
481
482         * ircd/m_who.c: add handling for the 'a' field
483
484         * ircd/m_whois.c: correct a typo of FEAT_HIS_SERVERNAME for
485         FEAT_HIS_SERVERINFO
486
487         * ircd/s_bsd.c: close file descriptors 0, 1, and 2; pull up some
488         ancient bug fixes from the u2.10.11 branch
489
490         * ircd/s_debug.c: include gline.h, jupe.h, motd.h, and s_stats.h;
491         call motd_memory_count(), gline_memory_count(), and
492         jupe_memory_count() when reporting memory usage; add back a
493         comment regarding "DBuf caveats"
494
495         * ircd/s_err.c: add RPL_STATSQLINE, RPL_HOSTHIDDEN, and pull up
496         change to ERR_NOPRIVILEGES wording
497
498         * ircd/s_misc.c: include ircd_features.h and not ircd_policy.h
499
500         * ircd/s_stats.c: count from 0 and not 1 when initializing the
501         stats
502
503         * ircd/s_user.c: comment out assertion; remove extraneous
504         definition of FLAGS_HOST_HIDDEN; add in hikari's "your host is now
505         hidden" reply; don't detach oper confs unless sptr is not an oper
506
507         * ircd/table_gen.c: pull up change to NTL_CHPFX (removing +);
508         change channel name character range to be from '\041' (!) to
509         UCHAR_MAX
510
511         * ircd/whocmds.c: pull up fix to /who idle time from u2.10.11.04
512
513         * tools/linesync/linesync.conf: pull up from u2.10.11.04
514
515         * tools/linesync/linesync.sh: pull up from u2.10.11.04
516
517 2003-01-07 Andrew Miller <a1kmm@mware.virtualave.net>
518         * almost everything: Forward ported numerous changes from .11 to .12
519         
520 2002-07-05 Andrew Miller <a1kmm@mware.virtualave.net>
521         * ircd/packet.c(connect_dopacket): Pass the job on to server_dopacket
522         when they become a server.
523         * ircd/s_bsd.c(read_packet): Check they are now a server *after* the
524         packet is sent.
525         * ircd/class.c(make_class): Fixed an assert to be more useful.
526         
527 2002-07-05 Andrew Miller <a1kmm@mware.virtualave.net>
528         * ircd/packet.c
529         * ircd/packet.h: (connect_dopacket): Made a dopacket function for
530         connecting links which sends the messages through the correct message
531         handler.
532         * ircd/s_bsd.c(read_packet): Put packets through the correct handler
533         for connecting links. Properly handle unknown links becoming
534         connecting or servers.
535
536 2002-07-01 Andrew Miller <a1kmm@mware.virtualave.net>
537         * include/ircd_alloc.h (MyFree): Accept NULL pointers to do nothing
538         with, this is used quite a lot.
539         * ircd/class.c (make_class): Initialise the ref_count to 1 so that
540         we don't leak.
541         * ircd/class.c (add_class): When updating a class, free the old name
542         first to prevent leakage.
543         * ircd/class.c (class_delete_marked): Decrement the ref_count for the
544         class after it is removed from the linked list.
545         * ircd/ircd_parser.y: Changed a free to MyFree().
546         * ircd/ircd_parser.y: Removed a few debugging messages.
547
548 2002-07-01 Andrew Miller <a1kmm@mware.virtualave.net>
549         * s_bsd.c (read_packet): Our daily addition to the list of entities to
550         treat as servers - Connecting servers.
551         
552 2002-07-01 Andrew Miller <a1kmm@mware.virtualave.net>
553         * doc/debug_memleak_gc.patch,
554         * include/ircd_ircd_alloc.h,
555         * include/memdebug.h,
556         * configure.in,
557         * ircd/Makefile.in,
558         * ircd/memdebug.c: added a Boehm's gc based leak detector to find leaks
559         and notify the operators.
560         
561 2002-06-29  Andrew Miller <a1kmm@mware.virtualave.net>
562
563         * ircd/s_bsd.c (read_packet): don't make handshaking servers go through
564         the dbufs.
565         
566 2002-06-18  Andrew Miller <a1kmm@mware.virtualave.net>
567
568         * ircd/s_bsd.c (read_packet): don't allow unregistered clients to flood
569         the server.
570         
571 2002-06-18  Alex Badea  <vampire@p16.pub.ro>
572
573         * ircd/m_burst.c (ms_burst): kick local members if the channel
574         has a larger local TS and it's +i or +k remotely (anti net.ride)
575
576         * ircd/ircd_parser.y: fixed a bug that broke IP-based C:lines
577
578         * ircd/s_err.c: connection classes are now strings (RPL_STATSCLINE)
579
580         * include/s_conf.h: externalized lookup_confhost
581
582         * adns/Makefile.in: compilation-outside-source-tree fix
583
584 2002-06-17  Alex Badea  <vampire@p16.pub.ro>
585
586         * adns/*: added a slightly hacked copy of adns
587
588         * configure.in: added a --disable-adns switch if you want
589         to use the old libresolv res.c
590
591         * configure: ran autoconf
592
593         * ircd/res_libresolv.c: renamed from res.c
594
595         * ircd/res_adns.c: added adns resolver
596
597 2002-06-17  Alex Badea  <vampire@p16.pub.ro>
598
599         * ircd/ircd_parser.y: fixed 'Connect' block processing so now
600         you can actually connect to other servers
601
602 2002-06-04  Alex Badea  <vampire@p16.pub.ro>
603
604         * ircd/m_stats.c (report_servers_verbose): oops, fixed it so
605         it displays all servers, not just local connects
606
607 2002-05-30  Jean-Edouard Babin  <Jeb@jeb.com.fr>
608
609         * ircd/m_server.c (mr_server): fixed core bug on insufficient
610         arguments
611
612 2002-05-26  Jeekay  <jeekay@irc.planetarion.com>
613         
614         * ircd/m_join.c (HasControlChars): fixed unsigned vs signed
615
616 2002-05-26  Jeekay  <jeekay@irc.planetarion.com>
617  
618         * ircd/m_join.c (m_join,HasControlChars): check if a channel
619         name has any control chars (<=32) in it before allowing a
620         local user to join.
621  
622 2002-21-05 Andrew Miller <a1kmm@mware.virtualave.net>
623         * ircd/ircd_relay.c: stop an information leak about the
624         the network topography from relayed messages.
625
626 2002-04-19  Alex Badea  <vampire@p16.pub.ro>
627
628         * ircd/m_who.c (m_who): disallow non-opers to /who server.name
629
630 2002-04-18  Alex Badea  <vampire@p16.pub.ro>
631
632         * ircd/s_err.c (RPL_STATSILINE): connection classes are now
633         strings
634
635 2002-04-17  beware <steendijk@tomaatnet.nl>
636
637         * m_whois.c (m_whois): disallow remote queries for non-existent
638         local users when originated by a non-oper
639
640 2002-04-16  Alex Badea  <vampire@p16.pub.ro>
641
642         * ircd/s_user.c (hunt_server_cmd): also send a "no such server"
643         reply if the servername contains a '*' and it doesn't exist
644
645         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
646
647 2002-04-16  beware <steendijk@tomaatnet.nl>
648
649         * ircd/m_whois.c: the previous patch broke whois, fixed it
650         another way
651
652         * ircd/m_admin.c: cleaned up m_admin too while we're here,
653         hunt_server_cmd can do all the work for us
654
655 2002-04-15  Alex Badea  <vampire@p16.pub.ro>
656
657         * ircd/m_stats.c: added verbose server reporting (/stats v
658         or /stats V for machine-readable format) (bugzilla bug 52)
659
660         * include/numeric.h: added RPL_STATSVERBOSE 236
661
662         * ircd/s_err.c: added RPL_STATSVERBOSE
663
664         * ircd/s_stats.c: added help for stats 'v'
665
666 2002-04-15  Alex Badea  <vampire@p16.pub.ro>
667
668         * ircd/class.c (get_client_class): fixed typo which caused
669         /trace (and perhaps motd) to core
670
671 2002-04-15  beware <steendijk@tomaatnet.nl>
672
673         * ircd/m_whois.c: Fixed /whois servermask nomatch bug
674         where normal users could use the function to discover servers,
675         also the NOSUCHSERVER check code was missing.
676
677 2002-04-14  Alex Badea  <vampire@p16.pub.ro>
678
679         * ircd/ircd_parser.y: fixed cli_info(&me) not being set
680         from 'description' conf
681
682 2002-04-13  Stephane Thiell <mbuna@undernet.org>
683
684         * ircd/m_whois.c: removed FindUser() in ms_whois to fix
685         remote whois relaying.
686
687         * ircd/class.c: removed unused (and duplicated) code
688         get_client_ping().
689         
690         * include/class.h: removed unused function prototype.
691         
692         * config.guess: upgraded with latest
693         
694         * config.sub: upgraded with latest
695
696 2002-04-12  Alex Badea  <vampire@p16.pub.ro>
697
698         * ircd-patch: report which files failed the dry run (so the
699         user may force the patch if the rejects are in less-than-vital
700         files, such as ChangeLog or documentation)
701
702 2002-04-12  Alex Badea  <vampire@p16.pub.ro>
703
704         * ircd/m_invite.c: don't propagate invites for local channels
705
706         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
707
708 2002-04-10 Joseph Bongaarts <foxxe@wtfs.net>
709
710         * ircd/ircd.c: The last fix broke autoconnects completely.
711         Fixed it another way.
712         
713 2002-04-09  Brian Cline  <clineb@cs.winthrop.edu>
714
715         * ircd/ircd.c (try_connections): To avoid problems with infinite event
716         loops, don't try connecting to servers whose connect frequency is 0.
717         
718 2002-04-10  Alex Badea  <vampire@p16.pub.ro>
719
720         * ircd/ircd_parser.y: fixed a "features" block parse bug
721
722         * tools/convert-conf.py: added a configuration file converter
723         from 2.10.11 to 2.10.12 format
724
725         * ircd-patch: added GPL information to top of file
726
727 2002-04-09  Alex Badea  <vampire@p16.pub.ro>
728
729         * configure.in: added a human-readable report of configured
730         options at the end of the configure process
731
732         * configure: regenerated with autoconf
733
734 2002-04-08  Gavin Grieve  <ggrieve@ihug.co.nz>
735
736         * include/supported.h: change CHARSET to CASEMAPPING after
737         discussions as to what would be the preferred name.
738
739 2002-04-05 Andrew Miller <a1kmm@mware.virtualave.net>
740         * ircd/s_conf.c, ircd_parser.y, ircd_lexer.l: Add privilege
741         specification.
742         * Fix a minor parser bug that meant rehash didn't always
743         work correctly.
744
745 2002-04-03  Alex Badea  <vampire@p16.pub.ro>
746
747         * include/channel.h: fix compiler warnings (paratheses around &&)
748
749         * ircd/channel.c (modebuf_extract): fix compiler warnings
750         (uninitialized variables)
751
752         * ircd/Makefile.in: make ircd properly compile outside the
753         source tree
754
755 2002-04-03  Alex Badea  <vampire@p16.pub.ro>
756
757         * include/s_user.h: added a sptr parameter to InfoFormatter
758         function type
759
760         * ircd/m_who.c: don't match IPs for clients which have a hidden host,
761         except when the inquiring user is an oper
762
763         * ircd/whocmds.c: show the fake IP from FEAT_HIDDEN_IP if the
764         target has a hidden host, but show real IP to opers
765
766         * ircd/m_userip.c (userip_formatter): add sptr parameter; show the
767         fake IP from FEAT_HIDDEN_IP if the target has a hidden host, but
768         show real IP to opers
769
770         * ircd/m_userhost.c (userhost_formatter): add (unused) sptr parameter
771
772         * ircd/s_user.c (send_user_info): pass sptr to the formatting function
773
774         * include/ircd_features.h: new feature FEAT_HIDDEN_IP (stores which
775         fake IP to show for clients with a hidden host)
776
777         * ircd/ircd_features.c: new feature FEAT_HIDDEN_IP
778
779         * doc/example.conf: default value for FEAT_HIDDEN_IP
780
781         * doc/readme.features: documented FEAT_HIDDEN_IP
782
783 2002-04-03 Andrew Miller <a1kmm@mware.virtualave.net>
784         * doc/example.conf: Cleaned up some comments that ended up in
785           strange places due to problems in the merge process.
786         * ircd/m_nick.c: Cleaned up ms_nick, and fixed a bug that
787           probably dates back to Jarkko code.
788
789 2002-04-02  Kevin L Mitchell  <klmitch@mit.edu>
790
791         * ircd/m_kill.c: let ms_kill() and mo_kill() seperate the message
792         from the path before calling do_kill(); add a msg argument to
793         do_kill() and use it in preference to comment; remove all that old
794         code that fiddled with the buf and the comment
795
796         * ircd/ircd_log.c (log_write_kill): add a seperate msg argument
797
798         * include/ircd_log.h: add a seperate msg argument to
799         log_write_kill()
800
801         * ircd/ircd.c: display event engine and MAXCONNECTIONS information
802  
803 2002-04-02  Alex Badea <vampire@p16.pub.ro>
804
805         * ircd-patch: Automatically generate a version string from patches
806
807 2002-04-02  Alex Badea <vampire@p16.pub.ro>
808         
809         * ircd-patch: Test before doing anything dangerous, provide -f to
810                 to it anyway.  exit levels for easy scripting.
811
812 2002-04-01  Kevin L Mitchell  <klmitch@mit.edu>
813
814         * ircd/channel.c (joinbuf_join): don't add a channel to the list
815         in the joinbuf unless when we flush it, we empty the list
816
817 2002-04-02 Andrew Miller <a1kmm@mware.virtualave.net>
818         * ircd/ircd_parser.y: Added ircd parser, lexer, to replace the
819           old configuration file format.
820         * ircd/ircd_lexer.l
821         * ircd/s_conf.c
822         * doc/example.conf
823
824 2002-03-23 Bert Faes <bert.faes@pandora.be>
825
826         * s_misc.c made /trace reply always show the username
827         
828 2002-03-28  Kevin L Mitchell  <klmitch@mit.edu>
829
830         * configure.in: use AC_CHECK_FUNCS to define HAVE_* macros; test
831         for setrlimit, getrusage, and times
832
833         * configure: rerun auto-conf
834
835         * config.h.in: rerun autoheader
836
837 2002-03-27  Kevin L Mitchell  <klmitch@mit.edu>
838
839         * ircd/m_burst.c (ms_burst): use MODEBUF_DEST_NOKEY to suppress
840         sending of the key to the channel
841
842         * ircd/channel.c (modebuf_flush_int): when processing keys, only
843         include the actual key in the mode sent to the channel if
844         MODEBUF_DEST_NOKEY is not set
845
846         * include/channel.h: needed more bits for MODEBUF_DEST_*,
847         especially when adding MODEBUF_DEST_NOKEY to force keys in the
848         BURST to be reported as "*" to the channel
849
850         * ircd/m_oper.c (m_oper): clear the new oper's sendq so it gets
851         inherited from the class associated with the O-line
852
853 2002-03-25  Kevin L Mitchell  <klmitch@mit.edu>
854
855         * ircd/s_user.c (set_nick_name): invalidate all ban valid caching
856         when a user changes his nickname so we can catch if he now matches
857         a ban
858
859 2002-03-20 Reed Loden <reed@redmagnet.com>
860         * doc/example.conf: Added OPER_LIST_CHAN and LOCOP_LIST_CHAN.
861
862         * doc/readme.features: Added OPER_LIST_CHAN and LOCOP_LIST_CHAN.
863
864 2002-03-20 LordLuke <lordluke@undernet.org>
865         * ircd/client.c: Add LOCOP_LIST_CHAN feature.
866
867         * ircd/ircd_features.h: Add LOCOP_LIST_CHAN feature.
868
869 2002-03-19 Joseph Bongaarts <foxxe@wtfs.net>
870
871         * ircd/m_links.c: Make /links behave like /map for head_in_sand.
872         cleaned up excess code.
873
874         * ircd/map.c: Added map_dump_links_head_in_sand() Made changes in
875         map_add() and map_update() for links changes.
876
877         * include/map.h: Added info and prot to struct Map
878
879         * include/ircd_defs.h: Added MAP_CACHE_TIME for length of time
880         servers are cached in MapList
881
882         * ircd/s_misc.c: changed #ifdef for map_update()
883
884         * ircd/m_server.c: changed #ifdef for map_update()
885
886         * include/ircd_policy.h: added NO_HEAD_IN_SAND for easier removal of
887         hiding features.
888
889         * configure.in: add --disable-headinsand
890
891         * configure: Ran autoconf
892
893         * ircd/m_stats.c: Fixed a bug in /stats i and made /stats i show 
894         connect limits
895
896         * ircd/s_stats.c: Made /stats i report connect limits
897
898         * ircd/s_err.c: Modified RPL_STATSILINE to use %s instead of 
899         "*" for the password field.
900         
901 2002-03-19 LordLuke <lordluke@undernet.org>
902
903         * include/channel.h: Allow opers to view +s channels in /list
904
905         * include/client.h: Add "PRIV_LIST_CHAN" oper privilege
906
907         * include/ircd_features.h: added "LIST_CHAN" feature
908
909         * ircd/channel.c: Allow opers to view +s channels in /list
910
911         * ircd/client.c: Add "PRIV_LIST_CHAN"
912
913         * ircd/ircd_features.c: Add "LIST_CHAN" feature
914
915 2002-03-13 Joseph Bongaarts <foxxe@wtfs.net>
916
917         * ircd/m_kill.c: Last of the last of the bug fixes (Thanks Spike).
918         Must be more careful when forward porting by hand...
919         
920 2002-03-13  Carlo Wood  <run@alinoe.com>
921
922         * include/channel.h: CHFL_CHANNEL_MANAGER, new local
923         channel flag set when someone creates a channel or joins
924         using the Apass.  IsChannelManager(), SetChannelManager():
925         macros to manipulate new channel flag.
926         channel_modes: Added new argument to avoid calling
927         find_member_link more often than needed.
928
929         * include/numeric.h: RPL_APASSWARN, ERR_NOTLOWEROPLEVEL,
930         ERR_NOTMANAGER, ERR_CHANSECURED, ERR_UPASSSET,
931         ERR_UPASSNOTSET: new numeric replies.
932
933         * ircd/channel.c: is_level0_op: removed.
934         member_can_send_to_channel: disallow channel manager
935         to talk.  channel_modes: show upass to level0 ops.
936         mode_parse_upass: Only the channel manager is allowed
937         to change the upass.  Only allow to set upass when apass
938         is also set.  mode_parse_apass: Don't allow to change the
939         Apass if the channel is older than 48 hours.  Only allow
940         to remove the apass when upass is not set.  Send clear
941         warnings regarding the importance of apass.
942         mode_process_clients: Don't change the oplevel of an opped
943         member in a channel where upass is not set.
944
945         * ircd/destruct_event.c: exec_expired_destruct_events:
946         Bug fix: send DESTRUCT message when destructing a channel.
947
948         * ircd/m_destruct.c: ms_destruct: Bug fix: use self as
949         prefix for DESTRUCT message.
950
951         * ircd/m_join.c: m_join: Handle apass and upass.
952
953         * ircd/m_kick.c: m_kick: Don't allow to kick member with
954         a higher or equal op-level.
955
956         * ircd/m_mode.c: m_mode: Now pass member to channel_modes.
957         ms_mode: Allow server to do modes on channels with apass
958         set.
959
960         * ircd/s_err.c: RPL_APASSWARN, ERR_NOTLOWEROPLEVEL,
961         ERR_NOTMANAGER, ERR_CHANSECURED, ERR_UPASSSET,
962         ERR_UPASSNOTSET: new numeric replies.
963
964
965 2002-03-10 Joseph Bongaarts <foxxe@wtfs.net>
966
967         * ircd/m_kill.c: Last of the bug fixes for do_kill()
968
969         * ircd/list.c: Don't remove clients from the linked list
970         that aren't actually in the list.
971         
972 2002-03-08  Carlo Wood  <run@alinoe.com>
973         * include/channel.h: Added CHFL_BURST_ALREADY_OPPED
974         and CHFL_BURST_ALREADY_VOICED.
975
976         * ircd/m_burst.c: Allow BURST outside net-burst
977         and take into account that users are already joined
978         to the channel in that case.
979
980         * ircd/m_destruct.c: Implementation of DESTRUCT
981         handling code.
982
983         * ircd/m_join.c: Set the channel creationtime to
984         the timestamp of a message when that timestamp is
985         smaller.
986 2002-02-27 Reed Loden <reed@redmagnet.com>
987        * tools/crypter: Updated some variables, added another notice,
988        added CVS Id tag, and updated Perl location.
989
990        * tools/ringlog.c: Added IRC - Internet Relay Chat, 
991        tools/ringlog.c
992
993        * tools/ringlog.pl: Added IRC - Internet Relay Chat, 
994        tools/ringlog.pl
995
996        * tools/wrapper.c: Added IRC - Internet Relay Chat, 
997        tools/wrapper.c
998
999        * tools/mkpasswd.c: Added CVS Id tag
1000
1001        * tools/sums: Updated to comply with sums being moved to tools/
1002        and added CVS Id tag
1003
1004        * tools/README: Updated location of file and partly rewrote to fit 
1005        u2.10.11's Features
1006
1007        * tools/Makefile.crypt: Updated location of file and added CVS Id 
1008        tag
1009
1010        * acconfig.h: Updated location of file
1011
1012        * config.h.in: Updated location of file
1013
1014        * tools/Bounce/bounce.conf: Added CVS Id tag
1015
1016        * tools/Bounce/Bounce.cpp: Updated location of file
1017
1018        * tools/Bounce/Bounce.h: Updated location of file
1019
1020        * tools/hashtoy: Added CVS Id Tag
1021
1022 2002-02-27  Carlo Wood  <run@alinoe.com>
1023
1024         * /ircd/ircd.c: check_pings: First check if a PING was sent at all.
1025
1026 2002-03-01  Carlo Wood  <run@alinoe.com>
1027
1028         * include/channel.h: struct Channel: new attribute destruct_event.
1029         Prototype for destruct_channel().
1030
1031         * include/destruct_event.h: new header file for destruct_event.c.
1032
1033         * ircd/Makefile.in: New source file: destruct_event.c.
1034
1035         * ircd/channel.c: sub1_from_channel: Don't destruct channel
1036         immedeately but instead schedule it for destruction after
1037         some time when a channel becomes empty (and clear invite
1038         only and limit in that case).
1039         destruct_channel: new function, was previously the destructing
1040         part of sub1_from_channel.
1041         add_user_to_channel: remove destruction request if any.
1042
1043         * ircd/destruct_event.c: New file.  Implementation of functions
1044         schedule_destruct_event_1m, schedule_destruct_event_48h,
1045         remove_destruct_event and exec_expired_destruct_events.
1046
1047         * ircd/ircd.c: destruct_event_timer: new timer.
1048         main: use destruct_event_timer to call exec_expired_destruct_events
1049         once per minute.
1050
1051         * ircd/m_endburst.c: ms_end_of_burst: Don't complain about empty
1052         channels.  Schedule new empty channels for destruction.
1053
1054         * ircd/m_join.c: m_join: Destruct just-created channel immedeately.
1055
1056 2002-03-01  Carlo Wood  <run@alinoe.com>
1057         * ircd/s_misc.c: exit_client: Only call map_update()
1058         for servers.
1059
1060 2002-02-28  Carlo Wood  <run@alinoe.com>
1061         * include/channel.h: New attribute 'oplevel' in struct Membership.
1062         Added defines MAXOPLEVELDIGITS and MAXOPLEVEL.
1063         New macros:  OpLevel(member): returns op-level of member and
1064         SetOpLevel(member, value): sets op-level of member.
1065         Prototype of add_user_to_channel: add oplevel to parameters.
1066         Prototype of mode_parse: add member to to parameters.
1067
1068         * include/numeric.h: added ERR_NOTLOWEROPLEVEL.
1069
1070         * ircd/s_err.c: idem.
1071
1072         * ircd/channel.c: Removed unmatched '{' braces from comments
1073         (confuses vi).  add_user_to_channel: oplevel is passed to function
1074         and added in the created MemberShip structure.  send_channel_modes:
1075         Generate the nick:mode list of the BURST msg in the new style (with
1076         op-levels).  DONE_UPASS/DONE_APASS: fixed typo in comment.  struct
1077         ParseState: New attribute: member.  mode_process_clients: Disallow
1078         deopping someone with an equal or higher op-level, take care of
1079         inheritance of op-level.  mode_parse: member is passed to function      
1080         and added in the created ParseState structure.  joinbuf_join: pass 0
1081         as oplevel to add_user_to_channel as needed initialization of oplevel
1082         in struct MemberShip.
1083
1084         * ircd/m_burst.c: ms_burst: Implementation of op-levels in the
1085         decoding of a BURST message and passing on a BURST message.
1086         Renamed default_mode to current_mode.
1087
1088         * ircd/m_mode.c: m_mode/ms_mode: pass on `member' to mode_parse.
1089
1090         * ircd/m_opmode.c: ms_opmode/mo_opmode: pass on NULL as member
1091         to mode_parse (causes opped member to get op-level 0).                  
1092
1093 2002-02-25  Carlo Wood  <run@alinoe.com>
1094         * include/channel.h: Added two new strings to struct Mode,
1095         upass and apass, both with maximum length PASSLEN (a new
1096         define in this file).  Two new mode defines MODE_UPASS and
1097         MODE_APASS.
1098
1099         * ircd/channel.c: is_level0_op: Added as dummy function.
1100         channel_modes/modebuf_flush_int/modebuf_extract/mode_parse:
1101         Added support for MODE_APASS (+A) and MODE_UPASS (+u).
1102         mode_parse_upass: New function to parse mode +u.
1103         mode_parse_apass: New function to parse mode +A.
1104
1105         * ircd/s_err.c: Added 'A' and 'u' to mode list (RPL_MYINFO).            
1106
1107 2002-02-25  Carlo Wood  <carlo@alinoe.com>
1108
1109         * ircd/m_server.c: remove unused variables
1110
1111 2002-02-25 Joseph Bongaarts <foxxe@wtfs.net>
1112
1113         * ircd/m_map.c: Modified to show a useful output to non-opered
1114           clients when HEAD_IN_SAND_MAP is defined. Servers are added to
1115           the list when first seen (after receiving SERVER) and that list
1116           is sent to clients. Servers are excluded from the list if they are
1117           hubs, services, or have been missing for more than 1 week.
1118         
1119         * ircd/map.c: Created file for map_* functions
1120
1121         * include/map.h: Created file for map_* functions
1122
1123         * ircd/m_server.c: Added calls to map_update()
1124
1125         * ircd/s_misc.c: Added call to map_update()
1126
1127         * ircd/parse.c: Changed to use m_map() and mo_map()
1128         
1129 2002-02-22 Reed Loden <reed@redmagnet.com>
1130
1131        * ircd/m_connect.c: Removed an extra : in remote connect message.
1132
1133 2002-02-19 Joseph Bongaarts <foxxe@wtfs.net>
1134
1135         * ircd/whocmds.c: Local opers should also be able to
1136         see servernames in /who
1137
1138         * ircd/gline.c: Fix core bug in gline_find()
1139
1140         * ircd/m_kill.c: Bug fix for HIS_KILLWHO
1141
1142 2002-02-19 John Buttery <john@io.com>
1143
1144         * ircd/ircd.c: Updated "No such file" error message.
1145         
1146 2002-02-18 Joseph Bongaarts <foxxe@wtfs.net>
1147
1148         * ircd/m_kill.c: Changed m_kill() to do_kill() because its not
1149         a message handler, and some general cleanups and bug fixes. 
1150
1151         * include/ircd_policy.h: Added HEAD_IN_SAND_KILLWHO for hiding
1152         kill source.
1153         
1154 2002-02-16  Tim Vogelsang <net@astrolink.org>
1155
1156         * ircd/m_kill.c: added a new static function, m_kill, which
1157         performs the actual kill.
1158         
1159 2002-02-14 Joseph Bongaarts <foxxe@wtfs.net>
1160
1161         * Added support for LIST STOP
1162         
1163 2002-02-13 Joseph Bongaarts <foxxe@wtfs.net>
1164
1165         * Merged changes from u2_10_11 to main branch.
1166         
1167 2002-02-08  Tim Vogelsang  <net@astrolink.org>
1168
1169        * ircd/m_quit.c: don't prefix user quits with "Quit:" unless a
1170        reason is supplied.
1171
1172 2002-02-06  Kevin L Mitchell  <klmitch@mit.edu>
1173
1174         * ircd/s_auth.c (read_auth_reply): left out an = in an
1175         assertion--shouldn't have had any impact, though
1176
1177         * ircd/Makefile.in: add a hook for using ringlog; run make depend
1178
1179         * tools/ringlog.c: for the heck of it, add a comment including
1180         rules for /etc/magic
1181
1182 2002-02-05  Kevin L Mitchell  <klmitch@mit.edu>
1183
1184         * tools/ringlog.pl: perl script to take output from ringlog and
1185         pass it to addr2line to get function, file, and line number
1186         information
1187
1188         * tools/ringlog.c: program/object to help in building function
1189         trace information
1190
1191 2002-02-04  Alex Badea  <vampire@p16.pub.ro>
1192
1193         * include/ircd_features.h: added new feature MOTD_BANNER
1194
1195         * ircd/ircd_features.c: added new feature MOTD_BANNER
1196
1197         * ircd/motd.c (motd_signon): send a one-line banner from
1198         FEAT_MOTD_BANNER if it's not NULL and FEAT_NODEFAULTMOTD
1199         is set
1200
1201         * doc/example.conf: default value for MOTD_BANNER feature
1202
1203         * doc/readme.features: documented the MOTD_BANNER feature
1204
1205 2002-02-04  Kevin L Mitchell  <klmitch@mit.edu>
1206
1207         * ircd/s_debug.c (debug_serveropts): remove deprecated CHROOTDIR
1208         check; added character 'A' to the server options string to
1209         indicate when assertion checking is enabled
1210
1211 2002-02-03  Kevin L Mitchell  <klmitch@mit.edu>
1212
1213         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1214
1215         * ircd/engine_kqueue.c (set_or_clear): don't generate an ET_ERROR
1216         event if the errno is EBADF, since the caller probably already
1217         knows about it and just hasn't gotten around to processing it yet
1218
1219         * ircd/ircd_events.c: set the GEN_ERROR flag if an ET_ERROR event
1220         is generated; don't process socket_events() or socket_state() if
1221         an error occurred; add GEN_ERROR to list of flags in gen_flags()
1222
1223         * include/ircd_events.h: define new GEN_ERROR flag; add a macro to
1224         clear it
1225
1226 2002-02-01  Kevin L Mitchell  <klmitch@mit.edu>
1227
1228         * ircd/channel.c: change make_nick_user_{ip,host} to not use a
1229         static buffer--instead, a buffer of the right size (NUH_BUFSIZE or
1230         NUI_BUFSIZE--I confess they're not well-named) is allocated by the
1231         caller
1232
1233 2002-02-02  Alex Badea  <vampire@p16.pub.ro>
1234
1235         * include/client.h: added user flag FLAGS_HIDDENHOST
1236
1237         * include/ircd_features.h: added FEAT_HOST_HIDING and
1238         FEAT_HIDDEN_HOST
1239
1240         * include/numeric.h: defined numeric 338 (RPL_WHOISACTUALLY)
1241         to report real hostnames and IPs to opers
1242
1243         * include/s_user.h: exported hide_hostmask()
1244
1245         * include/send.h: changed sendcmdto_channel_butserv to
1246         sendcmdto_channel_butserv_butone; ditto for
1247         sendcmdto_common_channels
1248
1249         * include/struct.h: added realhost to struct User
1250
1251         * include/whowas.h: added realhost to struct Whowas
1252
1253         * ircd/channel.c: match bans against both real and hidden
1254         hostmasks; moved some calls to use sendcmdto_*_butone
1255
1256         * ircd/gline.c: match glines agains real host
1257
1258         * ircd/ircd_features.c: added FEAT_HOST_HIDING and
1259         FEAT_HIDDEN_HOST
1260
1261         * ircd/m_account.c: call hide_hostmask() for possibly
1262         hiding the user's host
1263
1264         * ircd/m_burst.c: moved some calls to use sendcmdto_*_butone
1265
1266         * ircd/m_topic.c: moved some calls to use sendcmdto_*_butone
1267
1268         * ircd/m_userip.c: report IP 127.0.0.1 if the user has a hidden
1269         host
1270
1271         * ircd/m_who.c: match real hosts, if the query comes from an oper
1272
1273         * ircd/m_whois.c: report real hostname and IP to opers
1274
1275         * ircd/m_whowas.c: report real hostname to opers
1276
1277         * ircd/s_err.c: added user mode 'x' to the list of supported user
1278         modes in RPL_MYINFO (004); added RPL_WHOISACTUALLY for reporting
1279         real hostnames to opers
1280
1281         * ircd/s_misc.c: moved some calls to use sendcmdto_*_butone
1282
1283         * ircd/s_serv.c: send real hostname to servers
1284
1285         * ircd/s_user.c: send real hostname to servers; added processing
1286         of usermode 'x'; added hide_hostmask() which actually does the work
1287         of hiding a user's host; moved some calls to use sendcmdto_*_butone
1288
1289         * ircd/send.c: changed sendcmdto_channel_butserv to
1290         sendcmdto_channel_butserv_butone; ditto for
1291         sendcmdto_common_channels
1292
1293         * ircd/whocmds.c: extra letter 'x' in WHO reply if the user has
1294         it's host hidden
1295
1296         * ircd/whowas.c: if needed, store a user's real host so we can
1297         report it to opers later
1298
1299         * doc/readme.features: documented HOST_HIDING and HIDDEN_HOST
1300         features
1301
1302         * doc/example.conf: default values for HOST_HIDING and
1303         HIDDEN_HOST features
1304
1305 2002-02-01  Tim Vogelsang  <net@astrolink.org>
1306
1307         * ircd/send.c (sendwallto_group_butone): don't sent wallops to
1308         ordinary users
1309
1310 2002-01-28  Kevin L Mitchell  <klmitch@mit.edu>
1311
1312         * ircd/jupe.c (jupe_activate): remove a bogus assertion
1313
1314         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1315
1316         * ircd/s_err.c: added new channel mode 'r' to list of supported
1317         channel modes in RPL_MYINFO (004); migrated RPL_USERIP to use
1318         numeric 340 instead of 307; add ERR_NEEDREGGEDNICK (477) for
1319         informing users why they can't join a +r channel
1320
1321         * ircd/m_clearmode.c (do_clearmode): add support for MODE_REGONLY
1322         (+r) to do_clearmode(); note that it is *not* being added to the
1323         default clearmode mask!
1324
1325         * ircd/channel.c: don't allow non-+r users to send messages to +r
1326         channels from off the channel; add support for MODE_REGONLY (+r)
1327         to channel_modes(); don't allow non-+r users to join +r channels
1328         without an invite; add support for MODE_REGONLY to the modebuf_*()
1329         family of functions (changes in modebuf_flush_int(),
1330         modebuf_mode(), and modebuf_extract()); add support for
1331         MODE_REGONLY to mode_parse()
1332
1333         * include/supported.h (FEATURESVALUES2): added the new channel
1334         mode 'r' to the list of supported channel modes
1335
1336         * include/numeric.h: move RPL_USERIP to 340 to avoid the 307
1337         conflict; add ERR_NEEDREGGEDNICK (477) for the new +r channels
1338
1339         * include/channel.h: remove unused MODE_SENDTS; add new
1340         MODE_REGONLY
1341
1342         * ircd/s_bsd.c (read_packet): remove call to timer_verify()
1343
1344         * ircd/list.c: remove calls to timer_verify() from
1345         alloc_connection() and dealloc_connection()
1346
1347         * ircd/ircd_events.c: turn off timer_verify(); remove calls to it
1348         from timer_run()
1349
1350 2002-01-27  Kevin L Mitchell  <klmitch@mit.edu>
1351
1352         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1353
1354         * ircd/ircd_events.c (timer_run): why did I ever use a next
1355         pointer when the algorithm guarantees that the head pointer will
1356         always be the next pointer?
1357
1358 2002-01-26  Kevin L Mitchell  <klmitch@mit.edu>
1359
1360         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1361
1362         * ircd/s_bsd.c (read_packet): call timer_verify() after adding the
1363         client process timer to catch any list corruption
1364
1365         * ircd/list.c: surround alloc_connection() and
1366         dealloc_connection() with calls to timer_verify()
1367
1368         * ircd/ircd_events.c: add sledgehammer known as timer_verify() to
1369         verify the timer list's structure; call it around timer_run()
1370
1371 2002-01-22  Kevin L Mitchell  <klmitch@mit.edu>
1372
1373         * ircd/send.c (sendcmdto_common_channels): don't send message to a
1374         channel that the source is a zombie on
1375
1376 2002-01-13  Kevin L Mitchell  <klmitch@mit.edu>
1377
1378         * ircd/ircd_events.c (timer_enqueue): one more assertion--make
1379         sure a timer has the ACTIVE flag set before enqueueing the timer
1380
1381         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1382
1383         * ircd/list.c (dealloc_connection): assert that the process timer
1384         has been removed from the timer queue before dealloc_connection()
1385         is called
1386
1387 2002-01-12  Kevin L Mitchell  <klmitch@mit.edu>
1388
1389         * ircd/res.c: don't accept T_A when we're looking for T_PTR
1390
1391         * ircd/channel.c (modebuf_flush_int): nuke the code that would
1392         send a HACK DESYNCH notice on a HACK(2)--it would be far too
1393         chatty
1394
1395         * ircd/m_away.c (user_set_away): use AWAYLEN instead of TOPICLEN
1396
1397         * include/supported.h: add AWAYLEN to the list of supported
1398         features
1399
1400         * include/ircd_defs.h: add AWAYLEN to specify the maximum length
1401         of an away message
1402
1403         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1404
1405         * ircd/m_mode.c (m_mode): pass extra parameter to channel_modes()
1406
1407         * ircd/channel.c: pass a buflen parameter to channel_modes() for
1408         pbuf--we were using sizeof(pbuf), which would always be
1409         sizeof(char*) before; change send_channel_modes() to pass extra
1410         parameter to channel_modes()
1411
1412         * include/channel.h: pass a buflen parameter to channel_modes()
1413         for pbuf
1414
1415         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1416
1417         * ircd/uping.c (uping_start): initialize some timers
1418
1419         * ircd/s_bsd.c (read_packet): use new t_onqueue() macro to figure
1420         out when we need to re-add the process timer
1421
1422         * ircd/s_auth.c (make_auth_request): initialize a timer
1423
1424         * ircd/res.c (init_resolver): initialize some timers
1425
1426         * ircd/list.c (alloc_connection): initialize the client process
1427         timer
1428
1429         * ircd/ircd_events.c: add a function, timer_init(), to initialize
1430         a struct Timer; recast timer_add() to catch when adding a marked
1431         timer and not re-enqueue it--but mark it for re-enqueuing; update
1432         timer_del() to turn off the GEN_READD flag and to ignore reference
1433         counts when destroying the timer--we're using GEN_MARKED as an
1434         ersatz referance count; changed timer_run() to work with the new
1435         way of doing things; add GEN_ACTIVE and GEN_READD to gen_flags()'s
1436         map[]
1437
1438         * ircd/ircd.c: initialize some timers
1439
1440         * ircd/engine_select.c (engine_loop): initialize a timer
1441
1442         * ircd/engine_poll.c (engine_loop): initialize a timer
1443
1444         * ircd/engine_kqueue.c (engine_loop): initialize a timer
1445
1446         * ircd/engine_devpoll.c (engine_loop): initialize a timer
1447
1448         * ircd/IPcheck.c (IPcheck_init): initialize a timer
1449
1450         * include/ircd_events.h: add GEN_READD flag for timers to indicate
1451         that a timer must be readded; add t_onqueue() macro to check to
1452         see if a timer is on the queue (this is a hack, though); added
1453         timer_init() to initialize a struct Timer--we're no longer doing
1454         the initialization in timer_add()
1455
1456 2002-01-11  Kevin L Mitchell  <klmitch@mit.edu>
1457
1458         * ircd/engine_devpoll.c (engine_loop): relocate an assertion to
1459         prevent a core bug *in* the assertion
1460
1461         * doc/readme.features: document new POLLS_PER_LOOP feature; change
1462         documentation to reflect that OPER_SET now defaults to FALSE
1463
1464         * doc/p10.html: documented the new ACCOUNT stuff
1465
1466         * doc/example.conf: document new POLLS_PER_LOOP default; change
1467         default for OPER_SET
1468
1469         * RELEASE.NOTES: changed documentation to reflect the fact that
1470         assertions are now enabled by default and do not cause memory
1471         leaks
1472
1473         * ircd/res.c (make_cache): removed a bogus assertion we probably
1474         never caught because assertions haven't been enabled on production
1475         servers for any length of time before
1476
1477         * ircd/engine_devpoll.c (engine_loop): ditto for POLLS_PER_DEVPOLL
1478
1479         * ircd/engine_kqueue.c (engine_loop): stupid me forgot one
1480         instance of POLLS_PER_KQUEUE
1481
1482         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1483
1484         * ircd/s_bsd.c (client_timer_callback): only clear the
1485         FREEFLAG_TIMER flag when the timer is being destroyed
1486
1487         * ircd/ircd_features.c: create a new feature, POLLS_PER_LOOP, and
1488         default it to 200; turn OPER_SET off by default
1489
1490         * ircd/engine_kqueue.c: dynamically allocate and reallocate the
1491         array of events to obtain from the kernel
1492
1493         * ircd/engine_devpoll.c: dynamically allocate and reallocate the
1494         array of events to obtain from the kernel
1495
1496         * include/ircd_features.h: add a new feature for tuning how many
1497         events to get from the kernel, for engines that support that
1498
1499         * ircd/Makefile.in: re-run make depend to correct dependancies
1500
1501         * ircd/m_who.c: remove unneeded inclusion of list.h
1502
1503         * ircd/ircd_events.c: remove unneeded inclusion of list.h
1504
1505         * ircd/whocmds.c (do_who): hide server name in /who unless
1506         requester is an operator; simplify hop count insertion
1507
1508         * ircd/s_misc.c (exit_one_client): make sure client's snomask is
1509         cleared
1510
1511         * ircd/parse.c: use mo_version and mo_admin when opers do /version
1512         or /admin
1513
1514         * ircd/m_whowas.c (m_whowas): use HEAD_IN_SAND_SERVERNAME instead
1515         of the static string "*.undernet.org"
1516
1517         * ircd/m_version.c: only let ordinary users get version
1518         information for the server they are on
1519
1520         * ircd/m_admin.c: only let ordinary users get admin information
1521         for the server they are on
1522
1523         * ircd/channel.c (client_can_send_to_channel): check is_banned()
1524         before letting the client speak on a channel s/he is not on
1525
1526         * include/supported.h: add NETWORK to feature list
1527
1528         * include/handlers.h: declare mo_admin() and mo_version()
1529
1530 2002-01-10  Kevin L Mitchell  <klmitch@mit.edu>
1531
1532         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1533
1534         * ircd/s_debug.c (count_memory): conditionalize on MDEBUG instead
1535         of !NDEBUG
1536
1537         * ircd/m_stats.c: conditionalize /stats M on MDEBUG instead of
1538         !NDEBUG
1539
1540         * ircd/ircd_alloc.c: conditionalize on MDEBUG instead of on
1541         !NDEBUG
1542
1543         * ircd/fda.c: conditionalize on MDEBUG instead of on !NDEBUG
1544
1545         * ircd/Makefile.in: run make depend on chkconf.c as well
1546
1547         * include/ircd_alloc.h: instead of conditionalizing on !NDEBUG,
1548         conditionalize on MDEBUG
1549
1550         * include/fda.h: instead of conditionalizing on !NDEBUG,
1551         conditionalize on MDEBUG
1552
1553         * configure: rebuild configure script
1554
1555         * configure.in: enable assertion checking by default, since we
1556         have now decoupled memory debugging from the NDEBUG macro
1557
1558         * ircd/s_user.c (set_nick_name): remove calls to
1559         verify_client_list()
1560
1561         * ircd/s_misc.c (exit_one_client): remove calls to
1562         verify_client_list()
1563
1564         * ircd/s_conf.c (rehash): remove calls to verify_client_list()
1565
1566         * ircd/m_who.c (m_who): remove calls to verify_client_list()
1567
1568         * ircd/list.c: remove calls to verify_client_list(); keep
1569         verify_client_list() around just in case we ever need it again,
1570         but never compile it in
1571
1572         * ircd/ircd_events.c (event_execute): remove calls to
1573         verify_client_list()
1574
1575         * ircd/client.c (client_get_ping): remove calls to
1576         verify_client_list()
1577
1578         * include/list.h (send_listinfo): remove temporary debugging
1579         function verify_client_list()
1580
1581         * ircd/uping.c: don't die if the event type is ET_ERROR in socket
1582         callback functions
1583
1584         * ircd/res.c (res_callback): don't die if the event type is
1585         ET_ERROR
1586
1587         * ircd/listener.c (accept_connection): don't die if the event type
1588         is ET_ERROR
1589
1590 2002-01-09  Kevin L Mitchell  <klmitch@mit.edu>
1591
1592         * ircd/s_user.c (set_nick_name): bracket call to
1593         add_client_to_list() with calls to verify_client_list()
1594
1595         * include/patchlevel.h (PATCHLEVEL): bump patchlevel (again)
1596
1597         * ircd/list.c (verify_client_list): add a probabilistic loop
1598         detector: for every client added, there is a 2% probability that
1599         it will be used to replace the value of sentinel; if at any time,
1600         sentinel is found again, we know we're in a loop
1601
1602         * ircd/ircd_events.c (event_execute): add verify_client_list()
1603         calls wrapping event_execute; at the very least, I'll figure out
1604         what event the corruption occurred in
1605
1606         * ircd/list.c: moved verify_client_list() to try to keep it from
1607         being inlined
1608
1609         * ircd/Makefile.in (version.c): version.c wasn't dependant on
1610         version.h and patchlevel.h, like it was supposed to be
1611
1612         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1613
1614         * ircd/s_auth.c (destroy_auth_request): overload send_reports
1615         argument to also indicate whether or not to call
1616         release_auth_client() and thereby enter the client into the linked
1617         list
1618
1619         * ircd/engine_devpoll.c (engine_loop): remove bogus assertion
1620
1621         * include/patchlevel.h (PATCHLEVEL): bump patchlevel
1622
1623         * ircd/list.c (free_client): verify that destroy_auth_request()
1624         didn't automagically re-add us to the list; we might have to think
1625         about this interaction more carefully, actually
1626
1627         * ircd/s_auth.c (auth_kill_client): zero the auth pointer before
1628         calling free_client(); otherwise, free_client() will try to free
1629         the auth by calling destroy_auth_request(), which will call
1630         add_client_to_list()
1631
1632         * ircd/s_misc.c (exit_one_client): liberally sprinkle calls to
1633         verify_client_list() around to catch any corruption that might
1634         occur here
1635
1636         * ircd/s_conf.c (rehash): liberally sprinkle calls to
1637         verify_client_list() here, since this is about the only routine I
1638         can think of that could cause the "core on kill -HUP" bug
1639
1640         * ircd/m_who.c: sprinkle calls to verify_client_list() around
1641         liberally, since we've seen crashes here; temporarily include the
1642         otherwise unneeded list.h header
1643
1644         * ircd/list.c: sprinkle calls to verify_client_list() around quite
1645         liberally; add debugging asserts to list manipulation functions to
1646         catch strange settings for next and prev pointers; define
1647         verify_client_list(), which walks the client list and verifies
1648         that everything is as it's supposed to be
1649
1650         * ircd/client.c: wrap client_get_ping with calls to
1651         verify_client_list() to see if that's where we're dying
1652
1653         * include/patchlevel.h (PATCHLEVEL): bump to 03
1654
1655         * include/list.h: declare verify_client_list() if DEBUGMODE
1656         enabled; otherwise, define it to be empty
1657
1658 2002-01-08  Kevin L Mitchell  <klmitch@mit.edu>
1659
1660         * ircd/m_quit.c (m_quit): remove an unused variable
1661
1662         * include/patchlevel.h (PATCHLEVEL): bump PATCHLEVEL to 2
1663
1664         * ircd/s_user.c: when building the user mode to send to the user,
1665         don't include +r; add an extra set of parens to squelch a warning
1666
1667         * ircd/m_quit.c (m_quit): use exit_client_msg()
1668
1669         * include/patchlevel.h (PATCHLEVEL): bump patch level, so we can
1670         keep track of who's running what version
1671
1672         * ircd/m_squit.c (ms_squit): remove debugging calls to
1673         protocol_violation()
1674
1675         * Makefile.in: change MAKEFILES to IRCD_MAKEFILES to work around a
1676         new gmake "feature" (pull-up from trunk)
1677
1678         * ircd/m_quit.c (m_quit): prefix user quits with "Quit:" (pull-up
1679         from trunk)
1680
1681 2002-01-07  Kevin L Mitchell  <klmitch@mit.edu>
1682
1683         * ircd/s_user.c: add FLAGS_ACCOUNT, represented as 'r', to the
1684         list of user modes; process account name as part of user mode in
1685         NICK decoding (set_nick_name()); add account name to usermode when
1686         building the usermode to incorporate in outgoing NICK messages
1687
1688         * ircd/s_err.c: add RPL_WHOISACCOUNT for reporting what account a
1689         user is logged in to
1690
1691         * ircd/parse.c: define the new ACCOUNT command, usable only by
1692         servers and ignored by everything else
1693
1694         * ircd/m_whois.c: report what account name is associated with a
1695         user, if any
1696
1697         * ircd/m_account.c: implement the ACCOUNT command
1698
1699         * ircd/Makefile.in: add m_account.c to the list of sources; ran
1700         make depend
1701
1702         * include/struct.h: add an account field to struct User
1703
1704         * include/numeric.h: add a reply, RPL_WHOISACCOUNT, for reporting
1705         what username a user is logged in under
1706
1707         * include/msg.h: add ACCOUNT command and token (AC)
1708
1709         * include/ircd_defs.h: define ACCOUNTLEN to be 12--this matches
1710         the maximum length of a username for X
1711
1712         * include/handlers.h: add declaration for ms_account()
1713
1714         * include/client.h: add FLAGS_ACCOUNT to flag when a user account
1715         name has been set; added FLAGS_ACCOUNT to SEND_UMODES; added
1716         IsAccount() and SetAccount() to manipulate the flag
1717
1718         * ircd/m_squit.c (ms_squit): if we call FindNServer() on a server
1719         name like "Amsterdam2.NL.EU.undernet.org", we get the struct
1720         Client for the server with numeric "Am", which happens to be
1721         stockholm!  To fix this, we look up the full name *first*; if that
1722         doesn't get it, *then* we look up by numeric.
1723
1724 2001-12-24  Perry Lorier <isomer@coders.net>
1725         * ircd/m_server.c: cleanups, maybe this will make the bug easier
1726         to find.
1727
1728         * ircd/m_stats.c: display maximum number of connects in an I:
1729
1730 2001-11-22  Perry Lorier  <isomer@coders.net>
1731         * ircd/m_squit.c: Bug fix in squit
1732
1733 2001-11-03  Greg Sikorski <gte@atomicrevs.demon.co.uk>
1734         * ircd/parse.c, include/handlers.h: Give remote whois the correct
1735         handler.
1736         
1737 2001-11-01  Kevin L Mitchell  <klmitch@mit.edu>
1738
1739         * ircd/send.c: some minor white-space fiddling; recast selector
1740         test in sendwallto_group_butone() to remove a warning regarding
1741         putting & within parentheses
1742
1743         * ircd/m_create.c (ms_create): use time_t instead of int as a
1744         declaration for rate
1745
1746         * ircd/ircd_reply.c (protocol_violation): it's supposed to be
1747         WALL_DESYNCH, not CMD_DESYNCH, if I understand things right--no
1748         wonder we weren't seeing any protocol violations!
1749
1750         * include/send.h: include time.h for time_t; move WALL_* closer to
1751         the function they're used in; some white-space fiddling; add
1752         declaration of sendto_opmask_butone_ratelimited()
1753
1754         * ircd/m_squit.c (ms_squit): add protocol_violation() calls in the
1755         cases where we ignore a squit, so we aren't taken by surprise, at
1756         least...
1757
1758         * ircd/m_create.c (ms_create): Display origin server, not origin
1759         user
1760
1761         * ircd/m_create.c (ms_create): Fix "Timestamp drift" server notice
1762
1763 2001-10-31  Perry Lorier  <isomer@coders.net>
1764         * include/m_ping.c: Forward port ping bug
1765
1766 2001-10-31  Perry Lorier  <isomer@coders.net>
1767         * include/patchlevel.h: We're beta now
1768
1769 2001-10-31  Perry Lorier  <isomer@coders.net>
1770         * ircd/s_user.c: fixed hunt_server
1771
1772 2001-09-21  Perry Lorier  <isomer@coders.net>
1773         * ircd/send.c and various: replace sendcmdto_flag_butone with
1774         sendwallto_group_butone
1775
1776 2001-09-21  Vampire-  <unknown>
1777         * ircd/ircd_string.c: unique_name_vector round II.
1778
1779 2001-09-21  mbuna  <mbuna@undernet.org>
1780         * configure.in: Add support for darwin
1781
1782 2001-09-21  Perry Lorier  <isomer@coders.net>
1783         * ircd/s_user.c I'm stupid, s/acptr/from/, Hektik pointed it out
1784
1785 2001-09-20  Perry Lorier  <isomer@coders.net>
1786
1787         * Pullups from 2.10.10.pl16
1788         * Added some warnings, and the concept of rate limited snotices
1789
1790 2001-08-31  Kevin L Mitchell  <klmitch@mit.edu>
1791
1792         * ircd/channel.c: use "%u" to format limit arguments; use
1793         strtoul() to process limit arguments in a /mode command--note:
1794         most clients seem to truncate the integer, probably because
1795         they're using atoi, and perhaps signed ints
1796
1797 2001-08-17  Kevin L Mitchell  <klmitch@mit.edu>
1798
1799         * ircd/numnicks.c: include stdlib.h for exit()
1800
1801         * ircd/ircd_log.c: include stdlib.h for exit()
1802
1803         * ircd/ircd_events.c: include stdlib.h for exit()
1804
1805         * ircd/s_stats.c: remove description of /stats v, since it's gone
1806
1807         * ircd/m_wallops.c (mo_wallops): add "*" to the beginning of
1808         /wallops to distinguish wallops from wallusers
1809
1810         * ircd/m_error.c (mr_error): ignore ERROR from clients that aren't
1811         in the "handshake" or "connecting" states--I think the latter will
1812         never happen, but...
1813
1814         * doc/Authors: apply delete's Authors patch
1815
1816         * RELEASE.NOTES: rewrite RELEASE.NOTES, basing it a little on
1817         Braden's version
1818
1819         * README: rewrite README
1820
1821 2001-07-31  Kevin L. Mitchell  <klmitch@mit.edu>
1822
1823         * ircd/s_serv.c (server_estab): remove unused variable split
1824
1825         * ircd/parse.c: add mr_error to the parse table
1826
1827         * ircd/m_error.c (mr_error): add mr_error() to handle ERRORs from
1828         unregistered connections--if IsUserPort() is true, the ERROR is
1829         ignored, otherwise, the message is saved
1830
1831 2001-07-28  Kevin L. Mitchell  <klmitch@mit.edu>
1832
1833         * ircd/m_kill.c (ms_kill): another minor typo *sigh*
1834
1835         * ircd/s_user.c (send_supported): oops, minor typo...
1836
1837         * ircd/s_user.c: implement send_supported() to send two ISUPPORT
1838         messages containing our feature buffers; make register_user() use
1839         send_supported()
1840
1841         * ircd/s_misc.c (exit_client): make sure not to give away a remote
1842         server in the ERROR message sent to the client; if the killer is a
1843         server, we substitute our name in its place
1844
1845         * ircd/m_version.c (m_version): use send_supported() to send the
1846         ISUPPORT values to the user
1847
1848         * ircd/m_nick.c: shave nick collision kills here a bit, too, for
1849         the same reasons as for m_kill.c
1850
1851         * ircd/m_kill.c: shave kills a bit so that the results look
1852         exactly the same no matter where you are; if we didn't do this, it
1853         would be possible to map the network by looking at the differences
1854         between kills originating under various circumstances
1855
1856         * include/supported.h: split the features into two, so as to not
1857         bust the parameter count when sending the features list
1858
1859         * include/s_user.h: declare new send_supported() function to send
1860         the ISUPPORT information
1861
1862 2001-07-27  Kevin L. Mitchell  <klmitch@mit.edu>
1863
1864         * ircd/s_bsd.c: disable IP (*not* TCP) options to prevent
1865         source-routed spoofing attacks; this is only available under
1866         u2.10.11, so don't even bother, since no one but testers are using
1867         the source base
1868
1869 2001-07-25  Kevin L. Mitchell  <klmitch@mit.edu>
1870
1871         * include/ircd_policy.h: enable HEAD_IN_SAND_REMOTE by default
1872
1873         * ircd/s_err.c: put in a . for reporting link version on /trace,
1874         to match what /version does
1875
1876 2001-07-21  Kevin L. Mitchell  <klmitch@mit.edu>
1877
1878         * ircd/s_misc.c (exit_client): servers don't understand what the
1879         numeric nick ERROR is supposed to mean, so they ignore error
1880         messages, resulting in not knowing why we were rejected; use
1881         sendcmdto_one for servers and sendrawto_one for clients
1882
1883 2001-07-17  Kevin L. Mitchell  <klmitch@mit.edu>
1884
1885         * ircd/m_burst.c (ms_burst): in the case of a modeless channel and
1886         a nick collide, a bare BURST may be propagated; adjust the
1887         enforced parameter count to accept the bare BURST
1888
1889 2001-07-12  Kevin L. Mitchell  <klmitch@mit.edu>
1890
1891         * ircd/s_bsd.c: mark a client as having been IP checked
1892
1893         * ircd/IPcheck.c (ip_registry_check_remote): remove unneeded
1894         second call to SetIPChecked()
1895
1896 2001-07-11  Kevin L. Mitchell  <klmitch@mit.edu>
1897
1898         * ircd/engine_poll.c: deal with POLLHUP properly (hopefully)
1899
1900         * ircd/engine_devpoll.c: deal with POLLHUP properly (hopefully)
1901
1902 2001-07-09  Kevin L. Mitchell  <klmitch@mit.edu>
1903
1904         * ircd/os_bsd.c (os_get_rusage): move buf into the two ifdef'd
1905         sections so that if neither is used, the declaration of buf will
1906         not elicit an "unused variable" warning under NetBSD
1907
1908         * ircd/m_map.c: include string.h to declare strcpy (fix warnings
1909         on alpha)
1910
1911         * ircd/m_away.c: include string.h to declare strcpy/strlen (fix
1912         warnings on alpha)
1913
1914         * ircd/ircd_log.c: include string.h to declare strcpy/strlen (fix
1915         warnings on alpha)
1916
1917         * ircd/client.c: include string.h to declare memset (fix warnings
1918         on alpha)
1919
1920         * ircd/channel.c: remove unused functions next_overlapped_ban,
1921         del_banid, and is_deopped (fix warnings under -O1)
1922
1923         * ircd/IPcheck.c: include string.h to declare memset/memcpy (fix
1924         warnings on alpha)
1925
1926 2001-06-29  Kevin L. Mitchell  <klmitch@mit.edu>
1927
1928         * ircd/s_user.c (set_user_mode): clear the snomask if the user
1929         isn't supposed to receive server notices anymore
1930
1931         * ircd/ircd_features.c: change CONFIG_OPERCMDS to default to FALSE
1932
1933         * configure.in: use AC_MSG_CHECKING/AC_MSG_RESULT when checking
1934         installation prefix; default devpoll and kqueue to on (they get
1935         turned off if the required headers aren't present)
1936
1937         * ircd/whocmds.c (do_who): use ircd_snprintf() instead of
1938         sprintf_irc(); it's a bit hackish, but it'll do for now
1939
1940         * ircd/support.c: remove unused #include
1941
1942         * ircd/send.c: remove unused #include
1943
1944         * ircd/s_user.c: use ircd_snprintf() instead of sprintf_irc()
1945
1946         * ircd/s_serv.c: remove unused #include
1947
1948         * ircd/s_misc.c: use ircd_snprintf() and friends instead of
1949         sprintf_irc() and friends
1950
1951         * ircd/s_err.c: moved atoi_tab[] from ircd/sprintf_irc.c to
1952         ircd/s_err.c, which is the only other file to refer to it
1953
1954         * ircd/s_conf.c (conf_add_deny): use ircd_snprintf() instead of
1955         sprintf_irc()
1956
1957         * ircd/s_bsd.c (connect_server): use ircd_snprintf() instead of
1958         sprintf_irc()
1959
1960         * ircd/s_auth.c: use ircd_snprintf() instead of sprintf_irc()
1961
1962         * ircd/res.c: use ircd_snprintf() instead of sprintf_irc()
1963
1964         * ircd/m_version.c: use ircd_snprintf() instead of sprintf_irc()
1965
1966         * ircd/m_kill.c: use ircd_snprintf() instead of sprintf_irc()
1967
1968         * ircd/listener.c: use ircd_snprintf() instead of sprintf_irc()
1969
1970         * ircd/gline.c: use ircd_snprintf() instead of sprintf_irc()
1971
1972         * ircd/channel.c: don't include sprintf_irc.h; use ircd_snprintf()
1973         instead of sprintf_irc()
1974
1975         * ircd/Makefile.in: remove sprintf_irc.c from sources list; run
1976         make depend
1977
1978         * include/ircd_string.h: remove declaration of sprintf_irc() (what
1979         was it doing here anyway?)
1980
1981         * include/sprintf_irc.h: removed unneeded source file
1982
1983         * ircd/sprintf_irc.c: removed unneeded source file
1984
1985         * ircd/s_debug.c (count_memory): remove some dead code
1986
1987         * ircd/s_auth.c: remove some dead code
1988
1989         * ircd/res.c (update_list): remove some dead code
1990
1991         * ircd/m_whowas.c: remove some dead code
1992
1993         * ircd/m_whois.c: remove some dead code
1994
1995         * ircd/m_who.c: remove some dead code
1996
1997         * ircd/m_wallusers.c: remove some dead code
1998
1999         * ircd/m_wallops.c: remove some dead code
2000
2001         * ircd/m_wallchops.c: remove some dead code
2002
2003         * ircd/m_version.c: remove some dead code
2004
2005         * ircd/m_userip.c: remove some dead code
2006
2007         * ircd/m_userhost.c: remove some dead code
2008
2009         * ircd/m_uping.c: remove some dead code
2010
2011         * ircd/m_trace.c: remove some dead code
2012
2013         * ircd/m_topic.c: remove some dead code
2014
2015         * ircd/m_tmpl.c: remove some dead code
2016
2017         * ircd/m_time.c: remove some dead code
2018
2019         * ircd/m_squit.c: remove some dead code
2020
2021         * ircd/m_silence.c: remove some dead code
2022
2023         * ircd/m_settime.c: remove some dead code
2024
2025         * ircd/m_set.c: remove some dead code
2026
2027         * ircd/m_server.c: remove some dead code
2028
2029         * ircd/m_rpong.c: remove some dead code
2030
2031         * ircd/m_rping.c: remove some dead code
2032
2033         * ircd/m_restart.c: remove some dead code
2034
2035         * ircd/m_reset.c: remove some dead code
2036
2037         * ircd/m_rehash.c: remove some dead code
2038
2039         * ircd/m_quit.c: remove some dead code
2040
2041         * ircd/m_proto.c: remove some dead code
2042
2043         * ircd/m_privs.c: remove some dead code
2044
2045         * ircd/m_privmsg.c: remove some dead code
2046
2047         * ircd/m_pong.c: remove some dead code
2048
2049         * ircd/m_ping.c: remove some dead code
2050
2051         * ircd/m_pass.c: remove some dead code
2052
2053         * ircd/m_part.c: remove some dead code
2054
2055         * ircd/m_opmode.c: remove some dead code
2056
2057         * ircd/m_oper.c: remove some dead code
2058
2059         * ircd/m_notice.c: remove some dead code
2060
2061         * ircd/m_nick.c: remove some dead code
2062
2063         * ircd/m_map.c: remove some dead code
2064
2065         * ircd/m_lusers.c: remove some dead code
2066
2067         * ircd/m_list.c: remove some dead code
2068
2069         * ircd/m_links.c: remove some dead code
2070
2071         * ircd/m_kill.c: remove some dead code
2072
2073         * ircd/m_kick.c: remove some dead code
2074
2075         * ircd/m_jupe.c: remove some dead code
2076
2077         * ircd/m_join.c: remove some dead code
2078
2079         * ircd/m_ison.c: remove some dead code
2080
2081         * ircd/m_invite.c: remove some dead code
2082
2083         * ircd/m_info.c: remove some dead code
2084
2085         * ircd/m_help.c: remove some dead code
2086
2087         * ircd/m_gline.c: remove some dead code
2088
2089         * ircd/m_get.c: remove some dead code
2090
2091         * ircd/m_error.c: remove some dead code
2092
2093         * ircd/m_endburst.c: remove some dead code
2094
2095         * ircd/m_die.c: remove some dead code
2096
2097         * ircd/m_desynch.c: remove some dead code
2098
2099         * ircd/m_destruct.c: remove some dead code
2100
2101         * ircd/m_defaults.c: remove some dead code
2102
2103         * ircd/m_create.c: remove some dead code, along with an #if 1
2104
2105         * ircd/m_cprivmsg.c: remove some dead code
2106
2107         * ircd/m_connect.c: remove some dead code
2108
2109         * ircd/m_close.c: remove some dead code
2110
2111         * ircd/m_clearmode.c: remove some dead code
2112
2113         * ircd/m_burst.c: remove some dead code
2114
2115         * ircd/m_away.c: remove some dead code
2116
2117         * ircd/m_admin.c: remove some dead code
2118
2119         * ircd/listener.c (accept_connection): remove some dead code
2120
2121         * ircd/ircd_reply.c (need_more_params): remove some dead code
2122
2123         * ircd/channel.c (add_banid): remove some dead code
2124
2125         * include/support.h: remove some dead code
2126
2127         * include/querycmds.h: remove some dead code
2128
2129         * doc/readme.chroot: document how to do chroot operation
2130
2131 2001-06-28  Kevin L. Mitchell  <klmitch@mit.edu>
2132
2133         * ircd/Makefile.in: tune for VPATH builds/installs; add a rule to
2134         force bin directory to be created if necessary prior to
2135         installation; run make depend
2136
2137         * doc/Makefile.in (install): tune for VPATH installs by cd'ing to
2138         the ${srcdir}
2139
2140         * Makefile.in: tune to detect Makefile.in changes in
2141         subdirectories and to create installation directory indicated by
2142         ${prefix}
2143
2144         * ircd/whocmds.c (count_users): routine to count the number of
2145         users matching a given user@host mask
2146
2147         * ircd/s_err.c: add error messages for ERR_LONGMASK,
2148         ERR_TOOMANYUSERS, and ERR_MASKTOOWIDE
2149
2150         * ircd/m_gline.c: look for and advance past '!' flag on G-lines
2151         from operators; only set GLINE_OPERFORCE flag if oper has the
2152         PRIV_WIDE_GLINE privilege
2153
2154         * ircd/ircd_features.c: add GLINEMAXUSERCOUNT, which is the
2155         maximum number of users a G-line can impact before it has to be
2156         forced; OPER_WIDE_GLINE, to allow operators to use ! to force a
2157         wide G-line to be set; and LOCOP_WIDE_GLINE, to allow local
2158         operators to use ! to force a wide G-line to be set
2159
2160         * ircd/gline.c: make make_gline() be called with separate user and
2161         host arguments, and not call canon_userhost() directly; implement
2162         gline_checkmask() to verify that a host mask is acceptable; move
2163         BADCHAN check up in gline_add(), and check passed-in mask under
2164         certain circumstances for acceptability; fix call to
2165         sendto_opmask_butone() to handle separation of userhost into user
2166         and host in gline_add(); update call to make_gline()
2167
2168         * ircd/client.c: use FEAT_OPER_WIDE_GLINE and
2169         FEAT_LOCOP_WIDE_GLINE to set PRIV_WIDE_GLINE for an operator; add
2170         PRIV_WIDE_GLINE to privtab[] for client_report_privs()
2171
2172         * include/whocmds.h (count_users): declare routine to count users
2173         matching a given user@host mask
2174
2175         * include/numeric.h: added three new error returns: ERR_LONGMASK
2176         -- mask can't be formatted into a buffer; ERR_TOOMANYUSERS -- too
2177         many users would be impacted by the mask; ERR_MASKTOOWIDE -- mask
2178         contains wildcards in the wrong places
2179
2180         * include/ircd_features.h: add FEAT_GLINEMAXUSERCOUNT,
2181         FEAT_OPER_WIDE_GLINE, and FEAT_LOCOP_WIDE_GLINE
2182
2183         * include/gline.h (GLINE_OPERFORCE): provides a way for m_gline()
2184         to signal to gline_add() that the operator attempted to force the
2185         G-line to be set
2186
2187         * include/client.h (PRIV_WIDE_GLINE): new privilege for operators
2188
2189         * doc/readme.gline: update to document new "!" prefix to a G-line
2190         user@host mask
2191
2192         * doc/readme.features: document GLINEMAXUSERCOUNT,
2193         OPER_WIDE_GLINE, and LOCOP_WIDE_GLINE
2194
2195         * doc/example.conf: update to mention new features along with
2196         their defaults
2197
2198 2001-06-27  Kevin L. Mitchell  <klmitch@mit.edu>
2199
2200         * doc/example.conf: updated example.conf from Braden
2201         <dbtem@yahoo.com>
2202
2203         * include/supported.h: forward-port from pl15
2204
2205 2001-06-25  Kevin L. Mitchell  <klmitch@mit.edu>
2206
2207         * ircd/whocmds.c: include ircd_policy.h and implement
2208         HEAD_IN_SAND_WHO_OPCOUNT--forward-port from pl15
2209
2210         * ircd/m_whois.c: forward-port of the idle-time hiding code from
2211         pl15; this also required passing parc into do_whois(), which also
2212         meant passing parc into do_wilds()--*sigh*
2213
2214         * include/ircd_policy.h: add a couple more HEAD_IN_SAND
2215         #define's--WHOIS_IDLETIME and WHO_HOPCOUNT
2216
2217 2001-06-22  Kevin L. Mitchell  <klmitch@mit.edu>
2218
2219         * tools/wrapper.c: add a wrapper program that can be used to
2220         adjust file descriptor limits and root directories; program must
2221         be run as root--NOT SETUID!--and given appropriate -u arguments
2222
2223         * doc/readme.log: documentation of how to configure logging
2224
2225         * doc/readme.features: documentation of each feature (except for
2226         logging)
2227
2228 2001-06-21  Kevin L. Mitchell  <klmitch@mit.edu>
2229
2230         * Makefile.in (config): add a deprecation notice with a pointer to
2231         tools/transition
2232
2233         * tools/transition: shell script to convert old compile-time
2234         options into new compile-time options and appropriate F-lines
2235
2236         * tools/mkchroot: shell-script to prepare the chroot area by
2237         copying over all the necessary libraries so they can be found
2238
2239 2001-06-20  Kevin L. Mitchell  <klmitch@mit.edu>
2240
2241         * INSTALL: partial update of INSTALL for u2.10.11 release...
2242
2243 2001-06-14  Kevin L. Mitchell  <klmitch@mit.edu>
2244
2245         * ircd/table_gen.c (makeTables): finally got tired of the
2246         "overflow in implicit conversion" warning, so just got rid of it
2247         by explicitly casting UCHAR_MAX to a (default) char; diffs show no
2248         differences in the tables generated
2249
2250 2001-06-11  Kevin L. Mitchell  <klmitch@mit.edu>
2251
2252         * ircd/send.c (sendcmdto_match_butone): don't let the server crash
2253         if a client is in the STAT_CONNECTING status
2254
2255 2001-06-10  Kevin L. Mitchell  <klmitch@mit.edu>
2256
2257         * ircd/send.c: remove unused vsendcmdto_one(), consolidating it
2258         into sendcmdto_one(); define new sendcmdto_prio_one(), which
2259         places the message into the priority queue
2260
2261         * ircd/s_user.c (hunt_server_prio_cmd): definition of
2262         hunt_server_prio_cmd(), which simply calls sendcmdto_prio_one()
2263         instead of sendcmdto_one()
2264
2265         * ircd/m_settime.c: use sendcmdto_prio_one() and
2266         hunt_server_prio_cmd() to send SETTIME
2267
2268         * ircd/m_server.c: use sendcmdto_prio_one() to send SETTIME
2269
2270         * include/send.h: removed declaration for unused vsendcmdto_one();
2271         added a declaration for sendcmdto_prio_one()
2272
2273         * include/s_user.h: declare hunt_server_prio_cmd(), which calls
2274         sendcmdto_prio_one()
2275
2276         * ircd/send.c (sendcmdto_flag_butone): oops; /wallops should be
2277         put in the server's priority queue, too...
2278
2279         * ircd/ircd.c: don't check LPATH for accessibility at all
2280
2281 2001-06-08  Kevin L. Mitchell  <klmitch@mit.edu>
2282
2283         * ircd/s_serv.c (server_estab): send a +h flag in our SERVER
2284         command if we're configured as a hub; send individual server flags
2285         in SERVER commands
2286
2287         * ircd/s_bsd.c (completed_connection): send a +h flag in our
2288         SERVER command if we're configured as a hub
2289
2290         * ircd/m_server.c: implement parv[7] as a mode-like string; +h
2291         sets the FLAGS_HUB flag for a server; +s sets the FLAGS_SERVICE
2292         flag for a server; +hs sets both flags; also modify CMD_SERVER
2293         format string to send the flags
2294
2295         * include/client.h: define two new flags, FLAGS_HUB and
2296         FLAGS_SERVICE to mark services and hubs as such; define testing
2297         macros, setting macros
2298
2299         * ircd/s_user.c: remove deprecated struct Gline* argument to
2300         register_user(); remove GLINE rebroadcast; do not send GLINE
2301         acknowledgement parameter to NICK; do not look for GLINE
2302         acknowledgement parameter to NICK while parsing
2303
2304         * ircd/s_serv.c (server_estab): remove deprecated struct Jupe*
2305         argument to server_estab(); do not send JUPE/GLINE acknowledgement
2306         parameters for SERVER or NICK
2307
2308         * ircd/m_user.c (m_user): remove deprecated argument to
2309         register_user()
2310
2311         * ircd/m_server.c: remove deprecated argument to server_estab();
2312         remove documentation comment regarding JUPE acknowledgement
2313         parameter to SERVER; remove JUPE rebroadcast
2314
2315         * ircd/m_pong.c (mr_pong): remove deprecated argument to
2316         register_user()
2317
2318         * ircd/m_nick.c: remove documentation comment regarding GLINE
2319         acknowledgement parameter to NICK
2320
2321         * ircd/jupe.c: use user's real name in JUPE server notices if
2322         HEAD_IN_SAND_SNOTICES is defined
2323
2324         * ircd/ircd.c: remove deprecated chroot() code; remove deprecated
2325         setuid code; correct ancient DEBUG vs DEBUGMODE typo
2326
2327         * ircd/gline.c: use user's real name in GLINE server notices if
2328         HEAD_IN_SAND_SNOTICES is defined
2329
2330         * ircd/channel.c (modebuf_flush_int): make apparent source be
2331         local server, not oper's server; use user's real name in hack
2332         notices and DESYNC notices if HEAD_IN_SAND_SNOTICES is defined
2333
2334         * include/s_user.h: remove struct Gline pre-declaration; remove
2335         deprecated struct Gline argument from register_user()
2336
2337         * include/s_serv.h: remove struct Jupe pre-declaration; remove
2338         deprecated struct Jupe argument from server_estab()
2339
2340 2001-06-07  Kevin L. Mitchell  <klmitch@mit.edu>
2341
2342         * ircd/s_stats.c (hunt_stats): forward-port from pl15 of all the
2343         changes required to control remote stats
2344
2345         * ircd/s_numeric.c (do_numeric): rewrite numeric origins if
2346         recipient is not an operator and HEAD_IN_SAND_REWRITE is defined
2347         [forward-port from pl15]
2348
2349         * ircd/m_whowas.c (m_whowas): report server name only if requester
2350         is an operator [forward-port from pl15]
2351
2352         * ircd/m_whois.c (do_whois): /whois <mynick> now correctly reports
2353         my server; if HEAD_IN_SAND_REMOTE is 1, ignore the middle argument
2354         and obtain the report from the user's server [forward-port from
2355         pl15]
2356
2357         * ircd/m_who.c: add missing include for ircd_policy.h
2358         [forward-port from pl15]
2359
2360         * ircd/m_version.c (m_version): require oper access for remote
2361         /version if HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
2362
2363         * ircd/m_time.c (m_time): require oper access for remote /time if
2364         HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
2365
2366         * ircd/m_stats.c: pass extra argument to hunt_stats(); correct
2367         missing semicolon [forward-port from pl15]
2368
2369         * ircd/m_nick.c (ms_nick): hide the origin of certain collision
2370         kills [forward-port from pl15]
2371
2372         * ircd/m_motd.c (m_motd): require oper access for remote /motd if
2373         HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
2374
2375         * ircd/m_lusers.c (m_lusers): require oper access for remote
2376         /lusers if HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
2377
2378         * ircd/m_burst.c (ms_burst): server-added bans are stored using
2379         local server name, to hide remote server names; modes also are to
2380         originate from the local server [forward-port from pl15]
2381
2382         * ircd/m_admin.c (m_admin): require oper access for remote /admin
2383         if HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
2384
2385         * ircd/channel.c (add_banid): if a server is adding a ban, use my
2386         server name to hide the remote server's name [forward-port from
2387         pl15]
2388
2389         * ircd/Makefile.in: ran make depend
2390
2391         * include/s_stats.h: hunt_stats() has to have an extra argument to
2392         support the forward-port from pl15
2393
2394         * include/ircd_policy.h: #define HEAD_IN_SAND_STATS_P; add
2395         HEAD_IN_SAND_{BANWHO,REWRITE,REMOTE} [forward-port from pl15]
2396
2397         * ircd/engine_poll.c (engine_loop): remove bogus assert that I
2398         forgot to check in the events branch
2399
2400 2001-06-06  Kevin L. Mitchell  <klmitch@mit.edu>
2401
2402         * ircd/res.c (init_resolver): don't start DNS expires with a 0
2403         relative timeout--if the server starts slow, timeouts could be
2404         messy...there's probably a better solution, but this'll do for now
2405
2406         * ircd/os_solaris.c: _XOPEN_SOURCE doesn't get along with Solaris
2407         headers very well; include stropts.h; define an os_set_tos()
2408
2409         * ircd/os_generic.c (os_set_tos): added an os_set_tos() for
2410         os_generic.c
2411
2412         * ircd/ircd.c: if there are no C-lines, we don't want to have a
2413         timer that expires at the absolute time of 0--it kinda blocks all
2414         the other timers!
2415
2416         * ircd/engine_devpoll.c: some includes for open(); declare errcode
2417         and codesize in engine_loop()
2418
2419         * ircd/list.c (free_client): remove bogus check on timer active
2420         flag
2421
2422         * ircd/s_auth.c: pull out destruction code in
2423         auth_timeout_request() into an externally-visible
2424         destroy_auth_request(); manage cli_auth pointer in client
2425         structure; use it for an extra assertion check
2426
2427         * ircd/list.c: include s_auth.h for destroy_auth_request(); add
2428         debugging notices to show flow when deallocating
2429         connections/clients; call destroy_auth_request() when free'ing a
2430         client that has an auth outstanding; don't free the connection if
2431         the process timer is unmarked but still active
2432
2433         * ircd/ircd_events.c: set GEN_ACTIVE when initializing a generator
2434         and reset it before calling the event handler for an ET_DESTROY
2435         event
2436
2437         * include/s_auth.h (destroy_auth_request): declare
2438         destroy_auth_request(), which can be used to destroy an
2439         outstanding auth request if a client socket goes away before the
2440         auth exchange is completed
2441
2442         * include/ircd_events.h: add an active flag to keep track of
2443         whether or not particular generators are active, for the
2444         convenience of functions using the API
2445
2446         * include/client.h: add a pointer for auth requests to struct
2447         Connection so we can kill outstanding auth requests if a client
2448         socket closes unexpectedly
2449
2450         * ircd/s_bsd.c: cli_connect() could become 0 during the course of
2451         the sock or timer callback; take that into account in the assert
2452
2453         * ircd/list.c: add magic number checking and setting--magic
2454         numbers are zero'd on frees to detect double-frees; add back
2455         setting of cli_from() to 0 to break the back-link from the struct
2456         Connection (duh)
2457
2458         * ircd/ircd.c: set me's magic number correctly
2459
2460         * include/client.h: define magic numbers and accessor/verifier
2461         macros
2462
2463         * ircd/list.c: assert that dealloc_client() is called with
2464         cli_connect(cptr) == 0; set cli_connect(cptr) to 0 before calling
2465         dealloc_client(); don't mess with cli_from(cptr)
2466
2467         * ircd/s_bsd.c: only attempt to dealloc a connection if the
2468         associated client has already been destroyed, or at least delinked
2469
2470 2001-06-05  Kevin L. Mitchell  <klmitch@mit.edu>
2471
2472         * ircd/list.c (free_client): only try to delete the socket when
2473         the fd hasn't already been closed, avoiding a double-free
2474
2475         * ircd/list.c (free_connection): make sure the client is really
2476         gone before doing away with the connection
2477
2478         * ircd/s_bsd.c: record that socket has been added in con_freeflag
2479         field; queue a socket_del() as soon as the socket is close()'d;
2480         use con_freeflag & FREEFLAG_TIMER instead of con_timer; clear
2481         FREEFLAG_SOCKET on ET_DESTROY event in client_sock_callback(),
2482         then dealloc the connection if safe; mark socket as dead when
2483         there's a read error or EOF; clear FREEFLAG_TIMER flag upon entry
2484         to client_timer_callback(); dealloc connection if safe upon
2485         ET_DESTROY event in client_timer_callback()
2486
2487         * ircd/list.c: use con_freeflag instead of con_timer; only dealloc
2488         the connection if both socket and timer have been destroyed;
2489         destroy both socket and timer explicitly and carefully
2490
2491         * include/client.h: replace the con_timer field with a
2492         con_freeflag field, to indicate what still needs freeing; define
2493         the freeflags
2494
2495         * ircd/engine_select.c (engine_loop): duh...sockList[i] could
2496         become 0
2497
2498         * ircd/engine_devpoll.c (engine_loop): duh...sockList[i] could
2499         become 0
2500
2501         * ircd/s_bsd.c: add some extra assertions to try to track down a
2502         corruption problem
2503
2504         * ircd/engine_select.c (engine_loop): add an extra assert to try
2505         to track down a corruption problem
2506
2507         * ircd/engine_poll.c (engine_loop): add an extra assert to try to
2508         track down a corruption problem
2509
2510         * ircd/engine_kqueue.c (engine_loop): add an extra assert to try
2511         to track down a corruption problem
2512
2513         * ircd/engine_devpoll.c (engine_loop): skip slots that have become
2514         empty during processing; add an extra assert to try to track down
2515         a corruption problem
2516
2517         * ircd/engine_kqueue.c (engine_delete): make sure to zero deleted
2518         entries
2519
2520 2001-06-04  Kevin L. Mitchell  <klmitch@mit.edu>
2521
2522         * ircd/s_bsd.c (client_sock_callback): client is no longer
2523         blocked, so we must mark it as unblocked
2524
2525         * ircd/engine_select.c: add Debug() calls galore; add handling for
2526         SS_NOTSOCK; use a dummy sock variable to keep things from
2527         disappearing on us; correct timeout calculation; update nfds for
2528         efficiency
2529
2530         * ircd/engine_poll.c: use new debugging level (DEBUG_ENGINE);
2531         remove a spurious "if (sock)" which will always be true; update
2532         nfds for efficiency
2533
2534         * ircd/engine_kqueue.c: add Debug() calls galore; add handling for
2535         SS_NOTSOCK (just in case); correct timeout calculation
2536
2537         * ircd/engine_devpoll.c: add Debug() calls galore; add handling
2538         for SS_NOTSOCK; correct timeout calculation; add EAGAIN handling
2539
2540         * include/s_debug.h (DEBUG_ENGINE): add new debugging level;
2541         pretty-indent numbers
2542
2543         * ircd/engine_poll.c (engine_loop): break out SS_NOTSOCK
2544         case--it's not a socket; the check for writability is most likely
2545         not needed, but present for completeness
2546
2547 2001-05-24  Kevin L. Mitchell  <klmitch@mit.edu>
2548
2549         * ircd/s_bsd.c: add Debug messages; call read_packet() even if the
2550         no newline flag is set; call read_packet() when the timer expires,
2551         regardless of what's in the buffer--read_packet() should be able
2552         to deal properly
2553
2554         * ircd/IPcheck.c (ip_registry_connect_succeeded): correct a NOTICE
2555         sent to clients to include the client nickname (duh)
2556
2557         * ircd/ircd_events.c: don't destroy a timer if it's already marked
2558         for destruction; replace a missing ! in socket_del()
2559
2560         * ircd/engine_poll.c (engine_loop): reference a temporary variable
2561         so we don't have to worry about sockList[i] going away
2562
2563         * ircd/s_bsd.c (client_sock_callback): add Debug messages
2564
2565         * ircd/s_auth.c: add Debug messages all over the place
2566
2567         * ircd/ircd_events.c: add and edit some Debug messages; add a list
2568         of routines to convert some of the enums and flags from numbers
2569         into human-readable strings for the Debug messages
2570
2571         * ircd/engine_poll.c: hack some Debug messages to use the new name
2572         conversion routines in ircd_events.c; add an extra assert for a
2573         condition that shouldn't ever happen; apparently recv() can return
2574         EAGAIN when poll() returns readable--I wonder why...
2575
2576         * include/ircd_events.h: declare some helper routines under
2577         DEBUGMODE
2578
2579 2001-05-23  Kevin L. Mitchell  <klmitch@mit.edu>
2580
2581         * ircd/s_bsd.c (client_sock_callback): add an extra assertion
2582         check
2583
2584         * ircd/s_auth.c: add more Debug messages
2585
2586         * ircd/list.c (make_client): add an extra assertion check
2587
2588         * ircd/ircd_events.c (socket_events): don't call the engine events
2589         changer if we haven't actually made any changes to the event mask
2590
2591         * ircd/uping.c: add some Debug messages
2592
2593         * ircd/s_stats.c: document new /STATS e
2594
2595         * ircd/s_err.c: add RPL_STATSENGINE to report the engine name
2596
2597         * ircd/s_bsd.c: remove static client_timer variable; in
2598         read_packet(), if there's still data in the client's recvQ after
2599         parsing, add a 2 second timer (con_proc); fix the ET_DESTROY case
2600         of client_sock_callback to handle destroying the timer properly;
2601         rewrote client_timer_callback from scratch to be called on an
2602         individual client
2603
2604         * ircd/m_stats.c: add /STATS e to report the engine name
2605
2606         * ircd/list.c: deal with con_timer field in struct Connection
2607         properly; correct a core-level bug in remove_client_from_list--if
2608         the client is the only one in the list, we try to update
2609         GlobalClientList's cli_prev pointer--not good
2610
2611         * ircd/ircd.c: remove call to init_client_timer()
2612
2613         * ircd/engine_poll.c: made Debug messages more uniform by
2614         prepending "poll:" to them all; corrected an off-by-one error that
2615         caused poll_count to be 1 less than the actual count and removed
2616         my work-around; added Debug messages to indicate which socket is
2617         being checked and what the results are
2618
2619         * ircd/Makefile.in: ran a make depend
2620
2621         * include/s_bsd.h: remove init_client_timer(), since we're doing
2622         it differently now
2623
2624         * include/numeric.h (RPL_STATSENGINE): a stats reply to report the
2625         engine name
2626
2627         * include/ircd_policy.h (HEAD_IN_SAND_STATS_E): turn off /stats e
2628         reports for non-opers
2629
2630         * include/client.h: add con_timer and con_proc fields to struct
2631         Connection and define accessor macros--con_timer marks that
2632         con_proc contains a valid timer, and con_proc is used to pace user
2633         data
2634
2635         * ircd/s_bsd.c (close_connection): let free_client() destroy the
2636         socket
2637
2638         * ircd/s_auth.c (start_auth): add a Debug call to indicate when
2639         auth has begun on a client
2640
2641         * ircd/ircd_events.c: ensure that event_execute() is called with a
2642         non-NULL event; modify event_add() macro to properly zero list
2643         bits; modify gen_dequeue() to not try to clip it out of a list
2644         it's already been clipped out of; change signal socket
2645         initialization to use state SS_NOTSOCK; permit timeout values of
2646         0 in add_timer(); add many Debug calls; change socket_del() and
2647         timer_del() to always set the GEN_DESTROY flag; use GEN_MARKED in
2648         timer_run() instead of GEN_DESTROY so that event_generate() will
2649         pass on the events; remove the switch and replace with a simpler
2650         if-then-else tree in timer_run(); don't allow destroyed sockets to
2651         be destroyed again, nor their states or event masks to be changed
2652
2653         * ircd/ircd.c: initialize "running" to 1
2654
2655         * ircd/engine_poll.c: deal with SS_NOTSOCK "sockets"; add Debug
2656         messages all over the place; fix a counting problem in
2657         engine_add(); turn wait into a signed integer and set it to -1
2658         only if timer_next() returns 0; adjust wait time to be relative;
2659         don't call gen_ref_dec() if socket disappeared while we were
2660         processing it
2661
2662         * include/ircd_events.h: the pipe for signals is not a socket, so
2663         we must mark it as such--added SS_NOTSOCK for that special socket;
2664         events won't be generated if GEN_DESTROY is on, so add GEN_MARKED
2665         for the benefit of timer_run()
2666
2667         * configure.in: add --enable-pedantic and --enable-warnings to
2668         turn on (and off) -Wall -pedantic in CFLAGS
2669
2670 2001-05-21  Kevin L. Mitchell  <klmitch@mit.edu>
2671
2672         * ircd/s_conf.c: change "s_addr" element accesses to "address"
2673         element accesses
2674
2675         * include/s_conf.h: on some systems, "s_addr" is a macro; use
2676         "address" instead
2677
2678 2001-05-18  Kevin L. Mitchell  <klmitch@mit.edu>
2679
2680         * ircd/engine_kqueue.c: include ircd_alloc.h; set_or_clear returns
2681         void in this file; add a missing semi-colon; declare errcode,
2682         codesize
2683
2684         * ircd/uping.c (uping_sender_callback): it's pptr, not uping
2685
2686         * ircd/s_user.c (register_user): comment out spurious reference to
2687         nextping
2688
2689         * ircd/s_serv.c (server_estab): comment out spurious reference to
2690         nextping
2691
2692         * ircd/s_conf.c (read_configuration_file): comment out spurious
2693         reference to nextping and nextconnect
2694
2695         * ircd/s_bsd.c: comment out some spurious references to formerly
2696         global (now non-existant) variables; correct a couple of typos
2697
2698         * ircd/s_auth.c: pre-declare some functions referenced in the
2699         callback; correct a typo
2700
2701         * ircd/res.c (start_resolver): pass errno value of ENFILE
2702
2703         * ircd/listener.c (accept_connection): you know your API is messed
2704         up when...variables that shouldn't have been global crop up in
2705         other files
2706
2707         * ircd/list.c (free_client): substitution of == for =
2708
2709         * ircd/ircd_signal.c: include assert.h for assertion checking;
2710         check ev_data() to find out what signal generated event
2711
2712         * ircd/ircd_events.c: some references to the variable "timer"
2713         should have been references to the variable "ptr"
2714
2715         * ircd/engine_select.c: it's struct fd_set, not struct fdset;
2716         ev_timer(ev) is already a timer pointer; declare codesize as a
2717         size_t to correct signedness issue; use timer_next(), not
2718         time_next()
2719
2720         * ircd/engine_poll.c: ev_timer(ev) is already a timer pointer;
2721         select fd out of struct pollfd in assertion checking; declare
2722         errcode and codesize; use timer_next(), not time_next()
2723
2724         * ircd/engine_kqueue.c: ev_timer(ev) is already a timer pointer;
2725         use function timer_next(), not time_next()
2726
2727         * ircd/engine_devpoll.c: ev_timer(ev) is already a timer pointer;
2728         use function timer_next(), not time_next()
2729
2730         * ircd/Makefile.in (IRCD_SRC): add ircd_events.c to the list of
2731         compiled sources; do make depend
2732
2733         * include/list.h: pre-declare struct Connection
2734
2735         * include/ircd_events.h (gen_ref_inc): cast to the right structure
2736         name
2737
2738         * include/s_auth.h: duh; missing */
2739
2740 2001-05-10  Kevin L. Mitchell  <klmitch@mit.edu>
2741
2742         * ircd/send.c: update write events status after sending data or
2743         accumulating data to be sent
2744
2745         * ircd/m_list.c (m_list): update write events status after
2746         canceling a running /list
2747
2748         * ircd/channel.c (list_next_channels): update write events status
2749         after listing a few channels
2750
2751         * ircd/s_bsd.c: extensive changes to update to new events model;
2752         remove on_write_unblocked() and the two implementations of
2753         read_message(), which have been deprecated by this change
2754
2755         * ircd/s_auth.c: set the socket events we're interested in for
2756         clients; simplify some logic that does the connect_nonb followed
2757         by the socket_add
2758
2759         * ircd/list.c: define free_connection() to free a connection
2760         that's become freeable once the struct Socket has been
2761         deallocated; fix up free_client() to take this new behavior into
2762         account
2763
2764         * ircd/ircd.c: call init_client_timer()
2765
2766         * include/s_bsd.h: declare new REGISTER_ERROR_MESSAGE when unable
2767         to register connect-in-progress with events system; declare
2768         init_client_timer() (HACK!) to preserve rate-limiting behavior
2769
2770         * include/list.h: declare new free_connection()
2771
2772         * include/client.h: add a struct Socket to struct Connection
2773
2774 2001-05-09  Kevin L. Mitchell  <klmitch@mit.edu>
2775
2776         * ircd/ircd_signal.c: massage the handlers for SIGHUP, SIGINT, and
2777         SIGTERM into event callbacks; perform the actions in the
2778         callbacks, since they're not called in the context of the signal;
2779         set up the signal callbacks in the event engine
2780
2781         * ircd/ircd_events.c (signal_callback): we're supposed to look for
2782         a specific signal; don't generate an event if there is no signal
2783         structure for it
2784
2785         * ircd/ircd.c: nuke nextconnect and nextping and replace them with
2786         connect_timer and ping_timer; massage try_connections() and
2787         check_pings() into timer callbacks that re-add themselves at the
2788         right time; remove ircd.c's "event_loop()"; initialize the event
2789         system and the connect_timer and ping_timer
2790
2791         * ircd/uping.c: correct a couple more typos
2792
2793         * ircd/s_auth.c: rework to use new events system
2794
2795         * ircd/os_solaris.c (os_connect_nonb): update to new interface
2796
2797         * ircd/os_openbsd.c (os_connect_nonb): update to new interface
2798
2799         * ircd/os_linux.c (os_connect_nonb): update to new interface
2800
2801         * ircd/os_generic.c (os_connect_nonb): update to new interface
2802
2803         * ircd/os_bsd.c (os_connect_nonb): update to new interface
2804
2805         * include/s_auth.h: remove deprecated members of struct
2806         AuthRequest, replacing them with struct Socket and struct Timer
2807         structures; add flags to indicate when these structures have been
2808         released by the event system; remove the deprecated
2809         timeout_auth_queries()
2810
2811         * include/ircd_osdep.h (os_connect_nonb): connect could complete
2812         immediately, so change the interface to handle that possibility
2813
2814         * ircd/uping.c (uping_server): noticed and corrected a typo
2815
2816         * ircd/listener.c: set up to use ircd_event's struct Socket by
2817         adding an socket_add() call to inetport(), replacing
2818         free_listener() with socket_del() in close_listener(), and
2819         reworking accept_connection to be called as the callback
2820
2821         * ircd/ircd.c: add a call to IPcheck_init()
2822
2823         * ircd/IPcheck.c: remove IPcheck_expire(); rework
2824         ip_registry_expire() to be called from a timer; write
2825         IPcheck_init() to set up the expiration timer (hard-coded for a
2826         60-second expiration time)
2827
2828         * include/listener.h: add a struct Socket to the struct Listener;
2829         remove accept_connection()
2830
2831         * include/IPcheck.h: add IPcheck_init(), remove IPcheck_expire()
2832
2833 2001-05-08  Kevin L. Mitchell  <klmitch@mit.edu>
2834
2835         * ircd/ircd_events.c: include config.h; use USE_KQUEUE and
2836         USE_DEVPOLL instead of HAVE_KQUEUE and HAVE_DEVPOLL_H
2837
2838         * ircd/engine_select.c: include config.h; set FD_SETSIZE to
2839         MAXCONNECTIONS, not IRCD_FD_SETSIZE...
2840
2841         * ircd/engine_poll.c: include config.h
2842
2843         * ircd/engine_kqueue.c: include config.h
2844
2845         * ircd/engine_devpoll.c: include config.h
2846
2847         * ircd/Makefile.in: include engine sources in compilation and make
2848         depend steps
2849
2850         * configure.in: add checks for enabling the /dev/poll- and
2851         kqueue-based engines
2852
2853         * acconfig.h: add lines for USE_DEVPOLL and USE_KQUEUE
2854
2855         * ircd/Makefile.in: work in the engine sources
2856
2857 2001-05-07  Kevin L. Mitchell  <klmitch@mit.edu>
2858
2859         * ircd/m_settime.c: include ircd_snprintf.h
2860
2861         * ircd/ircd_relay.c: stomp a couple of gcc warnings suggesting
2862         parens around a construct that had both || and &&
2863
2864         * ircd/chkconf.c: #include "config.h" to get some important
2865         definitions
2866
2867         * ircd/Makefile.in: revamp ircd makefile for new build system
2868
2869         * doc/Makefile.in: revamp doc makefile for new build system
2870
2871         * config/*: Removed old build system files
2872
2873         * stamp-h.in: a stamp file
2874
2875         * install-sh: install-sh for new build system
2876
2877         * configure.in: configure.in for new build system
2878
2879         * configure: configure script for new build system (built by
2880         autoconf)
2881
2882         * config.sub: config.sub for new build system
2883
2884         * config.h.in: config.h.in for new build system (built by
2885         autoheader)
2886
2887         * config.guess: config.guess for new build system
2888
2889         * aclocal.m4: aclocal.m4 for new build system (built by aclocal
2890         1.4)
2891
2892         * acinclude.m4: aclocal.m4 macros for new build system
2893
2894         * acconfig.h: config.h skeleton for new build system
2895
2896         * Makefile.in: modify for new build system
2897
2898 2001-05-01  Kevin L. Mitchell  <klmitch@mit.edu>
2899
2900         * ircd/s_err.c: get rid of the last vestiges of TIME_T_FMT
2901
2902         * ircd/m_settime.c: get rid of the last vestiges of TIME_T_FMT
2903
2904         * ircd/m_server.c: get rid of the last vestiges of TIME_T_FMT
2905
2906 2001-05-01  Perry Lorier       <Isomer@coders.net>
2907         * doc/iauth.doc: Protocol for iauth server. (from hybrid).
2908         * doc/linux-poll.patch: Patch to make Linux under 2.2 not deadlock
2909                 when you have far far too many sockets in use.
2910         * {include,ircd}/iauth.c: A start on iauth support.
2911
2912 2001-05-01  Perry Lorier       <Isomer@coders.net>
2913         * ircd/s_err.c: Suggested wording change.
2914         * ircd/s_user.c: Users aren't target limited against +k users.
2915         * ircd/chkconf.c: Made it compile again, who knows if it works, but
2916                 now I can at least make install
2917         * various: Cleanups on m_*.c files.
2918
2919
2920 2001-04-23  Kevin L. Mitchell  <klmitch@mit.edu>
2921
2922         * ircd/s_misc.c (exit_client): make netsplit server notice say the
2923         right thing
2924
2925         * ircd/m_links.c (m_links_redirect): forward-port RPL_ENDOFLINKS
2926         change to make Khaled happy...
2927
2928         * ircd/m_whois.c (do_whois): pull-up of m_whois() fix
2929         (do_whois): duh...
2930
2931 2001-04-21  Kevin L. Mitchell  <klmitch@mit.edu>
2932
2933         * ircd/msgq.c: finally remove the msgq_integrity() hack, as it's
2934         turned up no more bugs
2935
2936         * ircd/ircd.c: use /* */ comments instead of // comments--all the
2937         world's not gcc :(
2938
2939         * ircd/s_conf.c (conf_add_server): use /* */ comments instead of
2940         // comments--all the world's not gcc :(
2941
2942         * ircd/runmalloc.c: finally garbage-collect unused file
2943
2944         * include/runmalloc.h: finally garbage-collect unused file
2945
2946         * ircd/<multiple files>: addition of '#include "config.h"' before
2947         all other includes in most .c files
2948
2949         * include/<multiple files>: remove includes of config.h, which are
2950         now going into the raw .c files
2951
2952 2001-04-20  Kevin L. Mitchell  <klmitch@mit.edu>
2953
2954         * ircd/m_whois.c (do_whois): display proper server name if the
2955         user is looking up himself
2956
2957         * ircd/m_who.c (m_who): disable match by servername or display of
2958         server names by non-opers
2959
2960         * include/ircd_policy.h: add define for
2961         HEAD_IN_SAND_WHO_SERVERNAME to cover full intent of sub-motion 15
2962         of CFV 165
2963
2964 2001-04-18  Kevin L. Mitchell  <klmitch@mit.edu>
2965
2966         * ircd/s_conf.c: keep the $R in memory so we can see it clearly
2967         when we do a /stats k
2968
2969         * ircd/s_user.c (set_user_mode): pull-up of changes to prevent
2970         users from turning on +s and +g
2971
2972         * ircd/s_misc.c (exit_client): pull-up of changes to turn off
2973         net.split notice
2974
2975         * ircd/parse.c: pull-up of changes to disable /trace, /links, and
2976         /map for users
2977
2978         * ircd/m_whois.c (do_whois): pull-up of server name masking for
2979         /whois
2980
2981         * ircd/m_user.c (m_user): removal of umode and snomask defaulting
2982         functions, pull-up
2983
2984         * ircd/m_stats.c (m_stats): pull-up of stats-disabling stuff
2985
2986         * ircd/m_map.c (m_map_redirect): pull-up of m_map_redirect()
2987
2988         * ircd/m_links.c (m_links_redirect): pull-up of m_links_redirect()
2989
2990         * ircd/channel.c (channel_modes): pull-up of channel key display
2991         as *
2992
2993         * include/ircd_policy.h: pull-up of ircd_policy.h
2994
2995         * include/client.h: pull-up of Set/ClearServNotice()
2996
2997         * ircd/gline.c (do_gline): report client name in G-line message
2998         (pull-up)
2999
3000         * ircd/s_user.c (register_user): pull-up--show IP address in some
3001         server notices dealing only with users; report which connection
3002         class has filled up
3003
3004         * ircd/s_stats.c (report_deny_list): use conf->flags &
3005         DENY_FLAGS_IP insteaf of conf->ip_kill
3006
3007         * ircd/m_stats.c (report_klines): use conf->flags & DENY_FLAGS_IP
3008         insteaf of conf->ip_kill
3009
3010         * ircd/s_conf.c: use flags field in struct DenyConf; pull-up of
3011         K-line by real name
3012
3013         * include/s_conf.h: use a flags field in struct DenyConf; define
3014         DENY_FLAGS_FILE, DENY_FLAGS_IP, and DENY_FLAGS_REALNAME for
3015         pull-up of K-line by real name
3016
3017         * ircd/m_trace.c: pull-up of IP show for user connections
3018
3019         * doc/example.conf: pull-up of the realname K-line documentation
3020
3021         * ircd/ircd.c: forward port of pid file advisory locking mechanism
3022
3023 2001-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
3024
3025         * ircd/send.c (sendcmdto_flag_butone): recast to just broadcast to
3026         all servers, rather than to only servers that have +w/+g/whatever
3027         users on them; among other things, this removes that atrocity
3028         known as sentalong[] from this function
3029
3030         * ircd/m_admin.c: must include ircd.h to declare "me"; must
3031         include hash.h to declare FindUser()
3032
3033         * ircd/m_wallusers.c: implementation of WALLUSERS
3034
3035         * ircd/m_desynch.c (ms_desynch): only send DESYNCHs to opers
3036
3037         * ircd/m_wallops.c: only send WALLOPS to opers
3038
3039         * ircd/parse.c: add WALLUSERS command to parser table
3040
3041         * include/handlers.h: declare wallusers handlers
3042
3043         * include/msg.h: add WALLUSERS command
3044
3045         * ircd/send.c (sendcmdto_flag_butone): if FLAGS_OPER is or'd with
3046         flag, send only to appropriate opers
3047
3048 2001-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
3049
3050         * ircd/uping.c: refit to use the new events interface
3051
3052         * ircd/res.c: refit to use the new events interface
3053
3054         * ircd/ircd_events.c: create timer_chg(), which permits a
3055         (non-periodic) timer's expire time to be modified; change the
3056         logic in timer_run() so that timers that were re-added while the
3057         event was being processed will not be destroyed prematurely
3058
3059         * include/uping.h: include the events header, declare some extra
3060         fields in struct UPing, remove timeout value, and define some
3061         flags for marking which cleanup items have yet to be done
3062
3063         * include/ircd_events.h: add a prototype for timer_chg() to change
3064         the expire time of a running timer
3065
3066 2001-03-13 Joseph Bongaarts <foxxe@wtfs.net>
3067         * ircd/os_openbsd.c: Tweaked the openbsd hack a bit.
3068         
3069 2001-03-07  Joseph Bongaarts  <foxxe@wtfs.net>
3070
3071         * config/configure.in: Add check for OpenBSD
3072
3073         * ircd/os_openbsd.c: Add seperate os dep file for openbsd which
3074         differs from generic BSD, particularly in its handling of
3075         _XOPEN_SOURCE.
3076         
3077 2001-02-12  Kevin L. Mitchell  <klmitch@mit.edu>
3078
3079         * ircd/m_gline.c (ms_gline): propagate a G-line that happened to
3080         have been added by a U-lined server, rather than going through the
3081         activate/deactivate logic; propagate G-line removals by U-lined
3082         servers as well
3083
3084         * ircd/gline.c: rename propagate_gline() to gline_propagate();
3085         make gline_propagate() return an int 0 (convenience return); only
3086         update lastmod in gline_activate() and gline_deactivate() if the
3087         current lastmod is non-zero, since 0 lastmod is our flag of a
3088         U-lined server having added a G-line
3089
3090         * include/gline.h (gline_propagate): exporting the G-line
3091         propagation function
3092
3093         * ircd/m_list.c (m_list): duh; permit explicit channel name
3094         specification only when /list gets two arguments ("Kev
3095         #wasteland") rather than when /list gets more than two
3096         arguments--nice braino
3097
3098 2001-01-29  Thomas Helvey <twhelvey1@home.com>
3099
3100         * ircd/ircd_reply.c (need_more_params): fix bug that allowed
3101         unregistered clients to spam opers with protocol violation
3102         messages. Note: the bugfix may have eliminated some useful
3103         protocol violation messages.
3104         Please send protocol violation messages explicitly from the
3105         functions they are discovered in, you have much better context
3106         for the error there and it helps to document the behavior of the
3107         server. This was also a design bug in that it violated the
3108         "A function should do one thing" heuristic. Patching this one
3109         would have resulted in a continuous spawning of other bugs over
3110         the next 3 years, so I killed it. Check around for stuff this
3111         broke and readd the calls to protocol_violation in the functions
3112         that need to send the message.
3113
3114 2001-01-29  Kevin L. Mitchell  <klmitch@mit.edu>
3115
3116         * ircd/channel.c (mode_parse_ban): stopper a tiny leak--if a ban
3117         already existed, then the logic would (attempt to) skip it, but
3118         would not free the ban string; now the ban string is free'd and
3119         the ban count is decremented, releasing the ban for use
3120
3121         * ircd/s_user.c: make send_umode_out() take a prop argument
3122         instead of testing for the PRIV_PROPAGATE privilege itself; fix
3123         set_umode() to use this new argument, calculating it before
3124         calculating the new privileges for a -o'd user
3125
3126         * ircd/m_oper.c (m_oper): pass the new prop argument to
3127         send_umode_out()
3128
3129         * ircd/channel.c (mode_parse_ban): turn off MODE_ADD bit in bans
3130         that we're not actually going to add because they already exist;
3131         test that particular bit before adding to the linked list
3132
3133         * include/s_user.h: add a prop argument to send_umode_out() to
3134         indicate whether or not to propagate the user mode
3135
3136 2001-01-24  Kevin L. Mitchell  <klmitch@mit.edu>
3137
3138         * ircd/msgq.c: ircd_vsnprintf() returns the number of bytes that
3139         it would have written; upper-bound the number to prevent overflows
3140         by proxy; also, tune buffer size given to ircd_vsnprintf() to take
3141         into account the fact that ircd_vsnprintf() already takes the
3142         terminal \0 into account
3143
3144 2001-01-22  Kevin L. Mitchell  <klmitch@mit.edu>
3145
3146         * ircd/msgq.c: add an incredibly ugly hack to attempt to track
3147         down an apparent buffer overflow; remove msgq_map(), since it's no
3148         longer used anywhere; slight tweaks to prevent off-by-one errors,
3149         but these can't explain the problems we've seen
3150
3151         * include/msgq.h: remove msgq_map(), since it's no longer used
3152         anywhere
3153
3154 2001-01-18  Kevin L. Mitchell  <klmitch@mit.edu>
3155
3156         * ircd/s_user.c (set_nick_name): call client_set_privs() after
3157         parsing user modes
3158
3159 2001-01-17  Kevin L. Mitchell  <klmitch@mit.edu>
3160
3161         * ircd/s_bsd.c (read_message): fix a typo in the select version of
3162         read_message()
3163
3164         * ircd/whowas.c (whowas_free): MyFree() is a macro that expects
3165         its argument to be an lvalue, which means we can't use
3166         whowas_clean()'s handy-dandy "return ww" feature
3167
3168         * ircd/ircd_features.c: default LOCOP_KILL to TRUE--oops...
3169
3170 2001-01-16  Kevin L. Mitchell  <klmitch@mit.edu>
3171
3172         * ircd/ircd_events.c (timer_run): it's possible that the timer got
3173         deleted during the callback processing, so don't go to the bother
3174         of requeuing it if the destroy flag is set
3175
3176         * ircd/engine_select.c: define FD_SETSIZE to be IRCD_FD_SETSIZE
3177         out of config.h if this is a *BSD; include errno.h (oops);
3178         decrement error count after an hour using a timer; use FD_SETSIZE
3179         constant instead of IRCD_FD_SETSIZE constant; fill in event
3180         processing code
3181
3182         * ircd/engine_poll.c: include errno.h (oops); decrement error
3183         count after an hour using a timer; fill in event processing code
3184
3185         * ircd/engine_kqueue.c: include errno.h (oops); decrement error
3186         count after an hour using a timer; assert events filter is either
3187         EVFILT_READ or EVFILT_WRITE; fill in event processing code
3188
3189         * ircd/engine_devpoll.c: include errno.h (oops); decrement error
3190         count after an hour using a timer; fill in event processing code
3191
3192 2001-01-15  Kevin L. Mitchell  <klmitch@mit.edu>
3193
3194         * ircd/client.c: fixed feattab; basically, when I changed features
3195         to use small integers specifying bit positions, instead of the
3196         bits themselves, I forgot to update feattab to not | these
3197         privileges together; also fixed a bug in the antiprivs masking
3198         loop in client_set_privs()--last index wouldn't get parsed
3199
3200 2001-01-11  Kevin L. Mitchell  <klmitch@mit.edu>
3201
3202         * ircd/ircd_events.c: call event_generate() with new data
3203         argument; make it set that field in struct Event; make
3204         socket_add() return the value of the eng_add callback
3205
3206         * ircd/engine_select.c: make engine_add() return a
3207         successful/unsuccessful status; add bounds-checking outside of an
3208         assert; use accessor macros; use log_write(), not the deprecated
3209         ircd_log(); add an assert to engine_loop() to double-check for
3210         data structure corruption
3211
3212         * ircd/engine_poll.c: make engine_add() return a
3213         successful/unsuccessful status; add bounds-checking outside of an
3214         assert; use accessor macros; use log_write(), not the deprecated
3215         ircd_log(); add an assert to engine_loop() to double-check for
3216         data structure corruption
3217
3218         * ircd/engine_kqueue.c: implementation of an engine for kqueue()
3219
3220         * ircd/engine_devpoll.c: implementation of an engine for /dev/poll
3221
3222         * include/ircd_events.h: define some accessor macros; add ev_data
3223         to struct Event for certain important data--errno values, for
3224         instance; make EngineAdd callback tell us if it was successful or
3225         not; add extra argument to event_generate(); make socket_add()
3226         return the status from EngineAdd
3227
3228 2001-01-10  Kevin L. Mitchell  <klmitch@mit.edu>
3229
3230         * ircd/ircd_events.c: pass initializer information about how many
3231         total _filedescriptors_ may be opened at once
3232
3233         * ircd/ircd.c: use exported "running" instead of unexported
3234         thisServer.running
3235
3236         * ircd/engine_select.c: implementation of an event engine based on
3237         select()
3238
3239         * ircd/engine_poll.c: implementation of an event engine based on
3240         poll()
3241
3242         * include/ircd_events.h: pass the engine initializer an integer
3243         specifing how many _filedescriptors_ may be opened at once
3244
3245         * include/ircd.h: running has to be exported for the engine_*
3246         event loops
3247
3248 2001-01-09  Kevin L. Mitchell  <klmitch@mit.edu>
3249
3250         * ircd/ircd_events.c: include some needed headers; add some
3251         comments; make evEngines[] const; bundle sig_sock and sig_fd into
3252         a struct named sigInfo; rework struct evInfo to have a queue of
3253         _generators_, and only when threaded; added a gen_init() function
3254         to centralize generator initialization; fix various compile-time
3255         errors; rework event_add() for new queueing scheme and checked for
3256         compile-time errors; add casts where needed; spell evEngines[]
3257         correctly; make engine_name() return const char*
3258
3259         * include/ircd_events.h: type EventCallBack depends on struct
3260         Event, so pre-declare it; put _event_ queue into generators, and
3261         only when threaded; give engine data a union to store both ints
3262         and pointers; make engine name a const; fix gen_ref_dec() macro;
3263         make engine_name() return a const char*
3264
3265         * ircd/ircd_events.c: gen_dequeue() is now exported, so move it
3266         down with the non-static functions; modify event_execute() to use
3267         the new gen_ref_dec() to simplify code; make sure event_generate()
3268         does not generate new events for generators marked for destruction
3269
3270         * include/ircd_events.h: the engines, at least, may need to modify
3271         reference counts to keep generators from going away while
3272         something still points at them, so add reference counter
3273         manipulators and export gen_dequeue() for them
3274
3275         * ircd/ircd_events.c: set up the list of engines to try; set up
3276         the signal struct Socket; rename netInfo to evInfo; move static
3277         functions near the beginning of the file; do away with
3278         signal_signal() (since we no longer keep a signal count ourselves)
3279         and call event_generate() directly from signal_callback--also
3280         renamed some functions; allow signal_callback() to read up to
3281         SIGS_PER_SOCK at once from the signal pipe; add event_init() to
3282         initialize the entire event system; add event_loop() to call the
3283         engine's event loop; initialize new struct GenHeader member,
3284         gh_engdata; remove timer_next(); add socket_add() function to add
3285         a socket; add socket_del() to mark a socket for deletion; add
3286         socket_state() to transition a socket between states; add
3287         socket_events() to set what events we're interested in on the
3288         socket; add engine_name() to retrieve event engine's name
3289
3290         * include/ircd_events.h: add engine data field to struct
3291         GenHeader; rename SOCK_ACTION_REMOVE to SOCK_ACTION_DEL; add a
3292         note about states vs s_events; remove signal count; fold union
3293         Generator back into struct Event; remove count members from struct
3294         Generators; redefine engine callbacks to not take a struct
3295         Engine*; add explanatory comments to callback definitions; add
3296         some engine callbacks to handle operations; remove struct Engine
3297         flag member--can detect single flag from eng_signal member; add
3298         event_init(), event_loop(), engine_name(), and the socket_*()
3299         functions; make timer_next() a macro to avoid a function call
3300
3301 2001-01-08  Kevin L. Mitchell  <klmitch@mit.edu>
3302
3303         * include/ircd_events.h: rename to ircd_events.h, since it handles
3304         events, not just networking stuff; add signal support; more
3305         structural rearrangement
3306
3307         * ircd/ircd_events.c: rename to ircd_events.c, since it handles
3308         events, not just networking stuff; add signal support; more
3309         structural rearrangement
3310
3311 2001-01-07  Kevin L. Mitchell  <klmitch@mit.edu>
3312
3313         * ircd/ircd_network.c: implement timer API; add reference counts
3314         appropriately
3315
3316         * include/ircd_network.h: firm up some pieces of the interface;
3317         split out members everything has into a separate structure; add
3318         reference counts; add timer API
3319
3320 2001-01-06  Kevin L. Mitchell  <klmitch@mit.edu>
3321
3322         * ircd/ircd_network.c: static data and event manipulation
3323         functions for new event processing system
3324
3325         * include/ircd_network.h: data structures for new event processing
3326         system
3327
3328 2001-01-03  Kevin L. Mitchell  <klmitch@mit.edu>
3329
3330         * ircd/whowas.c: Completely re-did the old allocation scheme by
3331         turning it into a linked list, permitting the
3332         NICKNAMEHISTORYLENGTH feature to be changed on the fly
3333
3334         * ircd/s_debug.c (count_memory): use FEAT_NICKNAMEHISTORYLENGTH
3335         feature instead of old #define
3336
3337         * ircd/ircd_features.c: add NICKNAMEHISTORYLENGTH feature as an
3338         integer feature with a notify callback (whowas_realloc)
3339
3340         * ircd/client.c (client_set_privs): second memset was supposed to
3341         be over antiprivs, not privs; thanks, Chris Behrens
3342         <cbehrens@xo.com> for pointing that out...
3343
3344         * include/whowas.h: new elements for an extra linked list in
3345         struct Whowas; a notify function for feature value changes
3346
3347         * include/ircd_features.h: new feature--FEAT_NICKNAMEHISTORYLENGTH
3348
3349         * config/config-sh.in: NICKNAMEHISTORYLENGTH is now a feature
3350
3351 2001-01-02  Kevin L. Mitchell  <klmitch@mit.edu>
3352
3353         * config/config-sh.in: get rid of DEFAULT_LIST_PARAMETER
3354         compile-time option--now in features subsystem
3355
3356         * ircd/motd.c (motd_init): rework motd_init() to be called as the
3357         notify function for MPATH and RPATH features (should probably
3358         split it up a bit, though...)
3359
3360         * ircd/m_privs.c (mo_privs): if called with no parameters, return
3361         privs of the caller, rather than an error
3362
3363         * ircd/m_list.c: pull usage message into its own function; pull
3364         list parameter processing into its own function that does not
3365         modify the contents of the parameter; add list_set_default() to
3366         set the default list parameter (uses the notify hook); rework
3367         m_list() to make use of these functions; removed dead code
3368
3369         * ircd/ircd_log.c (log_feature_mark): make sure to return 0, since
3370         we have no notify handler
3371
3372         * ircd/ircd_features.c: add notify callback for notification of
3373         value changes; give mark callback an int return value to indicate
3374         whether or not to call the notify callback; fix up feature macros
3375         for new notify callback; add DEFAULT_LIST_PARAM feature; rewrite
3376         string handling in feature_set() to deal with def_str being a null
3377         pointer; wrote feature_init() to set up all defaults appropriately
3378
3379         * ircd/ircd.c (main): call feature_init() instead of
3380         feature_mark(), to avoid calling notify functions while setting up
3381         defaults
3382
3383         * ircd/client.c: updated to deal with new privileges structure
3384
3385         * ircd/class.c: updated so init_class() can be called should one
3386         of PINGFREQUENCY, CONNECTFREQUENCY, MAXIMUM_LINKS, or
3387         DEFAULTMAXSENDQLENGTH be changed
3388
3389         * include/ircd_log.h: log_feature_mark() updated to fit with new
3390         API changes
3391
3392         * include/ircd_features.h: added DEFAULT_LIST_PARAM feature and
3393         feature_init() function (found necessary since adding the notify
3394         stuff and notifying motd.c during start-up...before we defined
3395         RPATH!)
3396
3397         * include/client.h: move privs around to enable addition of more
3398         bits if necessary; based on the FD_* macros
3399
3400         * include/channel.h: declare list_set_default (actually located in
3401         m_list.c *blanche*)
3402
3403         * ircd/s_user.c: retrieve MAXSILES and MAXSILELENGTH (now
3404         AVBANLEN*MAXSILES) from features subsystem
3405
3406         * ircd/s_debug.c (debug_serveropts): CMDLINE_CONFIG doesn't go to
3407         anything anymore
3408
3409         * ircd/s_bsd.c: retrieve HANGONGOODLINK and HANGONRETRYDELAY from
3410         the features subsystem
3411
3412         * ircd/s_auth.c (start_auth): NODNS migrated to the features
3413         subsystem
3414
3415         * ircd/random.c: created random_seed_set() function to set seed
3416         value, along with some stuff to make ircrandom() a little more
3417         random--state preserving, xor of time instead of direct usage,
3418         etc.; it's still a pseudo-random number generator, though, and
3419         hopefully I haven't broken the randomness
3420
3421         * ircd/m_version.c: FEATUREVALUES makes use of feature_int() calls
3422
3423         * ircd/m_join.c: use features interface to retrieve
3424         MAXCHANNELSPERUSER
3425
3426         * ircd/ircd_features.c: add NODISP flag for super-secret features;
3427         add a whole bunch of new features migrated over from make config
3428
3429         * ircd/ircd.c: use features interface to retrieve PINGFREQUENCY,
3430         CONNECTTIMEOUT, and TIMESEC
3431
3432         * ircd/client.c (client_get_ping): use features interface to
3433         retrieve PINGFREQUENCY
3434
3435         * ircd/class.c: use features interface to retrieve PINGFREQUENCY,
3436         CONNECTFREQUENCY, MAXIMUM_LINKS, and DEFAULTMAXSENDQLENGTH
3437
3438         * ircd/chkconf.c (DEFAULTMAXSENDQLENGTH): since it's now in the
3439         features subsystem, we have to add something explicit
3440
3441         * ircd/channel.c: use features interface to retrieve
3442         KILLCHASETIMELIMIT, MAXBANLENGTH, MAXBANS, and MAXCHANNELSPERUSER;
3443         note that MAXBANLENGTH is now calculated dynamically from MAXBANS
3444         and AVBANLEN
3445
3446         * ircd/Makefile.in: run make depend
3447
3448         * include/supported.h (FEATURESVALUES): update to reference
3449         feature settings
3450
3451         * include/random.h: add prototype for random_seed_set
3452
3453         * include/ircd_features.h: add several more features
3454
3455         * include/channel.h: move MAXBANS and MAXBANLENGTH into feature
3456         subsystem
3457
3458         * config/config-sh.in: feature-ized some more stuff
3459
3460         * include/motd.h: some new elements in motd.h for motd.c changes
3461
3462         * ircd/motd.c: motd_cache() now searches a list of already cached
3463         MOTD files; saves us from having duplicate caches in memory if
3464         there are two identical T-lines for two different sites...
3465
3466 2001-01-02  Perry Lorier <isomer@coders.net>
3467         * ircd/motd.c: don't core if the motd isn't found.  Bug found by
3468         Amarande.
3469
3470 2001-01-02  Perry Lorier <isomer@coders.net>
3471         * ircd/s_err.c: Added third param to 004 - the channel modes that tage params.  Used by hybrid/epic.
3472         * ircd/s_channels.c: Added fix for msg'ing a -n+m channel - thanks
3473                 to guppy for noticing, and hektik for providing the fix.
3474         * misc others: Minor cleanups, added more protocol_violations, ripped
3475                 out more P09 stuffs, bit more protocol neg stuff.
3476
3477 2000-12-19  Kevin L. Mitchell  <klmitch@mit.edu>
3478
3479         * ircd/m_ison.c (m_ison): Dianora says that ISON has to end with a
3480         space (*sigh* stupid clients...)
3481
3482         * ircd/s_user.c: make WALLOPS_OPER_ONLY a feature managed through
3483         ircd_features.[ch]
3484
3485         * ircd/s_err.c: get rid of GODMODE conditionals
3486
3487         * ircd/s_debug.c (debug_serveropts): switch to using appropriate
3488         calls into the features subsystem for various serveropts
3489         characters
3490
3491         * ircd/s_conf.c (find_conf_entry): get rid of USEONE conditional
3492
3493         * ircd/s_bsd.c: remove GODMODE conditional; use features subsystem
3494         to get value of VIRTUAL_HOST and CLIENT_FLOOD; remove
3495         NOFLOWCONTROL conditional
3496
3497         * ircd/s_auth.c: use features subsystem to determine value of
3498         KILL_IPMISMATCH
3499
3500         * ircd/parse.c: get rid of NOOPER and GODMODE conditionals; use
3501         features subsystem to determine the setting of IDLE_FROM_MSG
3502
3503         * ircd/numnicks.c: get rid of EXTENDED_NUMERICS conditionals
3504
3505         * ircd/motd.c: get value of NODEFAULTMOTD from features subsystem;
3506         use features subsystem to get motd file names
3507
3508         * ircd/m_settime.c: get value of RELIABLE_CLOCK from features
3509         subsystem
3510
3511         * ircd/m_server.c: get rid of CRYPT_LINK_PASSWORD, since it does
3512         us no good; use features subsystem to figure out if we need to do
3513         HUB-type stuff; make TESTNET debugging sendto_opmask_butone's use
3514         the Debug(()) macro instead; get value of RELIABLE_CLOCK from
3515         features subsystem
3516
3517         * ircd/m_privmsg.c: get IDLE_FROM_MSG from the features subsystem
3518
3519         * ircd/m_oper.c: get CRYPT_OPER_PASSWORD from the features
3520         subsystem
3521
3522         * ircd/m_connect.c: get SERVER_PORT from the features subsystem
3523
3524         * ircd/ircd_log.c (log_set_file): fix a bug that kept log files
3525         from getting marked if they were already set to something...
3526
3527         * ircd/ircd_features.c: add a flag to indicates read-only access;
3528         add several new features that used to be compile-time selected
3529
3530         * ircd/ircd.c: grab pidfile out of feature subsystem; don't check
3531         access to motd files (what the heck?); make sure to initialize the
3532         feature subsystem before trying to write the config file
3533
3534         * ircd/dbuf.c: use feature_int() to retrieve BUFFERPOOL settings;
3535         use feature_bool() to figure out if we're using the FERGUSON
3536         flusher
3537
3538         * ircd/Makefile.in: MPATH and RPATH are now done differently, so
3539         remove the clause that creates empty files of that name; also ran
3540         make depend
3541
3542         * include/sys.h: CLIENT_FLOOD is now a feature; unfortunately,
3543         there is no easy way to bounds-check it at present
3544
3545         * include/querycmds.h: make sure ircd_features.h is included; use
3546         feature_str(FEAT_DOMAINNAME) in calls to match()
3547
3548         * include/ircd_features.h: many new features that used to be
3549         compile-time selected
3550
3551         * config/config-sh.in: add * to DOMAINNAME; try also using first
3552         argument to search in /etc/resolv.conf; removed many compile-time
3553         options that now can be configured through the features system
3554
3555 2000-12-18  Kevin L. Mitchell  <klmitch@mit.edu>
3556
3557         * doc/api/log.txt: how to use the logging API
3558
3559         * doc/api/features.txt: how to use the features API
3560
3561         * doc/api/api.txt: how to write API documentation
3562
3563         * include/ircd_features.h: rearranged a couple of features for
3564         neatness purposes
3565
3566         * ircd/ircd_features.c: cleaned up the macros some; rearranged
3567         some code to all go into the switch; rearranged a couple of
3568         features for neatness purposes
3569
3570 2000-12-16  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3571         * ircd/os_bsd.c: Added os_set_tos for BSD users.
3572
3573 2000-12-16  Kevin L. Mitchell  <klmitch@mit.edu>
3574
3575         * ircd/ircd_features.c: Isomer almost got it right; you need to
3576         use F_I(), since it's an integer value, not a boolean value.  The
3577         asserts in feature_int would catch you out...  Also made the F_*
3578         macros take flags
3579
3580         * ircd/s_err.c: define RPL_PRIVS reply
3581
3582         * ircd/parse.c: put new PRIVS command into command table
3583
3584         * ircd/m_privs.c (mo_privs): message handler to report operator
3585         privileges
3586
3587         * ircd/ircd_features.c: declare new features OPER_SET and
3588         LOCOP_SET; redo boolean testing routine to accept TRUE, YES, and
3589         ON for boolean TRUE, and FALSE, NO, and OFF for boolean FALSE
3590
3591         * ircd/client.c: simplify client_set_privs() with a table that
3592         defines what features to test for; add new client_report_privs()
3593
3594         * ircd/Makefile.in: compile new m_privs.c; run make depend
3595
3596         * include/numeric.h (RPL_PRIVS): new reply numeric for displaying
3597         an operator's privileges
3598
3599         * include/msg.h: define new command: PRIVS
3600
3601         * include/ircd_features.h: create new features OPER_SET and
3602         LOCOP_SET for controlling access to /set
3603
3604         * include/handlers.h (mo_privs): declare message handler for
3605         reporting oper privileges
3606
3607         * include/client.h (client_report_privs): declare function to
3608         report what privileges an oper has
3609
3610         * ircd/m_whois.c (do_whois): fix a bug that caused /whois to
3611         report that a user is an oper if the oper doing the /whois had
3612         PRIV_SEE_OPERS
3613
3614 2000-12-17  Isomer <Isomer@coders.net>
3615         * ircd/listener.c: added support for TOS twiddling as a 'feature'.
3616
3617 2000-12-17  Isomer <Isomer@coders.net>
3618         * ircd/os_linux.c: add TOS stuffs
3619
3620         * ircd/listener.c: add TOS stuffs
3621
3622 2000-12-16  Kevin L. Mitchell  <klmitch@mit.edu>
3623
3624         * ircd/whocmds.c (do_who): use HasPriv to determine whether or not
3625         to indicate a user is an oper
3626
3627         * ircd/s_user.c: clear privileges setting when deopping; don't
3628         propagate +o unless user has PRIV_PROPAGATE privilege
3629
3630         * ircd/s_debug.c (debug_serveropts): created debug_serveropts()
3631         function and replaced how the server option string is generated
3632
3633         * ircd/parse.c: remove conditional on CONFIG_OPERCMDS
3634
3635         * ircd/m_whois.c (do_whois): use HasPriv to determine whether or
3636         not to indicate the user is an operator
3637
3638         * ircd/m_who.c: use HasPriv to determine whether or not a user
3639         should be displayed in the list of opers
3640
3641         * ircd/m_version.c: call debug_serveropts() to get server option
3642         string
3643
3644         * ircd/m_userip.c (userip_formatter): use HasPriv to determine
3645         whether or not to show oper status
3646
3647         * ircd/m_userhost.c (userhost_formatter): use HasPriv to determine
3648         whether or not to show oper status
3649
3650         * ircd/m_restart.c (mo_restart): replace ugly #ifdef conditional
3651         checks with HasPriv check; remove dead code
3652
3653         * ircd/m_rehash.c (mo_rehash): replace ugly #ifdef conditional
3654         checks with HasPriv check
3655
3656         * ircd/m_opmode.c (mo_opmode): use HasPriv to check permissions;
3657         use feature_bool to check if disabled
3658
3659         * ircd/m_oper.c (m_oper): set oper priviliges
3660
3661         * ircd/m_mode.c (m_mode): replace #ifdef conditional with HasPriv
3662         check
3663
3664         * ircd/m_kill.c (mo_kill): use HasPriv checks to determine if we
3665         can kill
3666
3667         * ircd/m_kick.c (m_kick): replace #ifdef conditional with HasPriv
3668         check
3669
3670         * ircd/m_jupe.c (mo_jupe): rework permissions checking structure;
3671         use feature_bool to check if disabled
3672
3673         * ircd/m_join.c (m_join): remove BADCHAN conditional; replace
3674         #ifdef conditional with a HasPriv check
3675
3676         * ircd/m_gline.c (mo_gline): rework permissions checking
3677         structure; use feature_bool to check if any part is disabled
3678
3679         * ircd/m_die.c: replace ugly #ifdef conditionals with HasPriv
3680         check; remove dead code
3681
3682         * ircd/m_clearmode.c: use feature_bool() to detect if we're
3683         disabled; use HasPriv to figure out what we're permitted to do;
3684         only allow clearmode on moded channels
3685
3686         * ircd/ircd_features.c: define various features; use HasPriv to
3687         verify permissions to set/reset
3688
3689         * ircd/gline.c (gline_add): use HasPriv instead of #ifdef
3690         conditionals
3691
3692         * ircd/client.c (client_set_privs): function to set an oper's
3693         privileges
3694
3695         * ircd/channel.c: use HasPriv calls instead of #ifdef conditionals
3696
3697         * include/whocmds.h: deconditionalize several macros and
3698         substitute appropriate calls to HasPriv()
3699
3700         * include/s_debug.h: get rid of global serveropts[]; define new
3701         function debug_serveropts() to build that string on the fly
3702
3703         * include/ircd_features.h: define some features
3704
3705         * include/client.h: add privs member to struct Connection; define
3706         various priviledges
3707
3708         * include/channel.h: no longer using IsOperOnLocalChannel; remove
3709         conditional of MAGIC_OPER_OVERRIDE on OPER_WALK_THROUGH_LMODES
3710
3711         * doc/Configure.help: remove help information for deprecated
3712         options
3713
3714         * config/config-sh.in: remove certain deprecated options having to
3715         do with what opers can and cannot do--first stage in moving
3716         compile-time constants into the .conf
3717
3718 2000-12-16  Isomer <Isomer@coders.net>
3719         * ircd/parse.c: detect if the prefix is missing and try and recover
3720         instead of coring.
3721
3722 2000-12-15  Kevin L. Mitchell  <klmitch@mit.edu>
3723
3724         * ircd/ircd_log.c: found and fixed some bugs in the debug logging
3725         code that would sometimes result in the log file not being
3726         reopened--which meant that a user could connect and get the
3727         logging output--oops
3728
3729         * ircd/Makefile.in: run make depend...
3730
3731         * ircd/s_stats.c: get rid of report_feature_list()
3732
3733         * ircd/s_err.c: add the 'bad value' error message, shift error
3734         messages over somewhat
3735
3736         * ircd/s_debug.c (debug_init): call log_debug_init with the
3737         use_tty flag
3738
3739         * ircd/s_conf.c (read_configuration_file): unmark features before
3740         reading the config file, then reset unmarked features after
3741         reading the config file
3742
3743         * ircd/m_stats.c: use feature_report() instead of
3744         report_feature_list()
3745
3746         * ircd/ircd_log.c: fix log_debug_file (bogus assertion); add
3747         special 'mark' flags and use them; add the stuff needed by the
3748         features API
3749
3750         * ircd/ircd_features.c: rework the features API and add gobs of
3751         comments to try to explain what some of these complex functions
3752         are actually doing
3753
3754         * include/s_stats.h: get rid of report_feature_list(); use
3755         feature_report() instead
3756
3757         * include/numeric.h: added a new error message and shifted old
3758         values over some--this is, after all, an alpha
3759
3760         * include/ircd_log.h: log_debug_init now takes an integer to tell
3761         it if it should be using the tty; added a couple of functions
3762         required by the features API
3763
3764         * include/ircd_features.h: add an enum and some more functions to
3765         flesh out the feature API--it should now be possible to put all
3766         those compile-time constants in the config file!
3767
3768         * ircd/send.c: got the direction of the assert incorrect...
3769
3770         * ircd/send.c: implement the efficiency of flush_connections by
3771         creating a linked list of struct Connection's with queued data;
3772         also get rid of flush_sendq_except and make sure to yank
3773         connections out of the list when their sendQs become empty (notice
3774         the assertion in flush_connections!)
3775
3776         * ircd/s_bsd.c (close_connection): must yank the Connection out of
3777         the sendq list
3778
3779         * ircd/list.c (dealloc_connection): must yank the Connection out
3780         of the sendq list
3781
3782         * ircd/dbuf.c (dbuf_put): call flush_connections instead of the
3783         deprecated flush_sendq_except
3784
3785         * ircd/client.c: define a couple new helper functions for sendq
3786         threading--this will make the flush_connections function in send.c
3787         considerably more efficient by creating a linked list of
3788         Connections that have queued data to send
3789
3790         * include/send.h: remove flush_sendq_except, as it's not used
3791         anymore
3792
3793         * include/client.h: declare a couple new helper functions for the
3794         sendq threading system
3795
3796 2000-12-14  Kevin L. Mitchell  <klmitch@mit.edu>
3797
3798         * ircd/m_ison.c (m_ison): Apply Diane Bruce's patch to make ISON
3799         parse all arguments
3800
3801         * ircd/s_debug.c (count_memory): modify to report for clients and
3802         connections, not local clients and remote clients
3803
3804         * ircd/list.c: fiddle with the client-fiddling functions to take
3805         into account the divorce of struct Connection from struct Client
3806
3807         * ircd/ircd.c: define a struct Connection for me, initialize it,
3808         and link it into the right place (ewww, globals!)
3809
3810         * include/client.h: remove CLIENT_{LOCAL,REMOTE}_SIZE; split
3811         struct Client into struct Client and struct Connection; redefine
3812         local-portion accessor macros to go through struct Client to the
3813         struct Connection; define struct Connection accessor macros
3814
3815 2000-12-13  Kevin L. Mitchell  <klmitch@mit.edu>
3816
3817         * ircd/whowas.c: missed a couple of accesses to a struct Client
3818
3819         * ircd/uping.c: missed a couple of accesses to a struct Client
3820
3821         * ircd/send.c: missed a couple of accesses to a struct Client
3822
3823         * ircd/s_user.c: missed a couple of accesses to a struct Client
3824
3825         * ircd/s_misc.c: missed a couple of accesses to a struct Client
3826
3827         * ircd/s_conf.c: missed a couple of accesses to a struct Client
3828
3829         * ircd/s_bsd.c: missed a couple of accesses to a struct Client
3830
3831         * ircd/s_auth.c: missed a couple of accesses to a struct Client
3832
3833         * ircd/res.c: missed a couple of accesses to a struct Client
3834
3835         * ircd/parse.c: missed a couple of accesses to a struct Client
3836
3837         * ircd/m_whois.c: use new accessor macros for struct Client
3838
3839         * ircd/m_who.c: use new accessor macros for struct Client
3840
3841         * ircd/m_wallchops.c: use new accessor macros for struct Client
3842
3843         * ircd/m_version.c: use new accessor macros for struct Client
3844
3845         * ircd/m_userip.c: use new accessor macros for struct Client
3846
3847         * ircd/m_userhost.c: use new accessor macros for struct Client
3848
3849         * ircd/m_user.c: use new accessor macros for struct Client
3850
3851         * ircd/m_uping.c: use new accessor macros for struct Client
3852
3853         * ircd/m_trace.c: use new accessor macros for struct Client
3854
3855         * ircd/m_topic.c: use new accessor macros for struct Client
3856
3857         * ircd/m_time.c: use new accessor macros for struct Client
3858
3859         * ircd/m_stats.c: use new accessor macros for struct Client
3860
3861         * ircd/m_squit.c: use new accessor macros for struct Client
3862
3863         * ircd/m_silence.c: use new accessor macros for struct Client
3864
3865         * ircd/m_server.c: use new accessor macros for struct Client;
3866         remove dead code
3867
3868         * ircd/m_rpong.c: use new accessor macros for struct Client
3869
3870         * ircd/m_rping.c: use new accessor macros for struct Client
3871
3872         * ircd/m_quit.c: use new accessor macros for struct Client
3873
3874         * ircd/m_privmsg.c: use new accessor macros for struct Client
3875
3876         * ircd/m_pong.c: use new accessor macros for struct Client; remove
3877         dead code
3878
3879         * ircd/m_ping.c: use new accessor macros for struct Client
3880
3881         * ircd/m_pass.c: use new accessor macros for struct Client
3882
3883         * ircd/m_part.c: use new accessor macros for struct Client
3884
3885         * ircd/m_oper.c: use new accessor macros for struct Client
3886
3887         * ircd/m_notice.c: use new accessor macros for struct Client
3888
3889         * ircd/m_nick.c: use new accessor macros for struct Client
3890
3891         * ircd/m_names.c: use new accessor macros for struct Client
3892
3893         * ircd/m_mode.c: use new accessor macros for struct Client
3894
3895         * ircd/m_map.c: use new accessor macros for struct Client
3896
3897         * ircd/m_list.c: use new accessor macros for struct Client
3898
3899         * ircd/m_links.c: use new accessor macros for struct Client;
3900         remove some dead code
3901
3902         * ircd/m_kill.c: use new accessor macros for struct Client; remove
3903         some dead code
3904
3905         * ircd/m_kick.c: use new accessor macros for struct Client
3906
3907         * ircd/m_join.c: use new accessor macros for struct Client; remove
3908         some dead code
3909
3910         * ircd/m_ison.c: use new accessor macros for struct Client
3911
3912         * ircd/m_invite.c: use new accessor macros for struct Client
3913
3914         * ircd/m_info.c: use new accessor macros for struct Client
3915
3916         * ircd/m_gline.c: use new accessor macros for struct Client
3917
3918         * ircd/m_error.c: use new accessor macros for struct Client
3919
3920         * ircd/m_create.c: use new accessor macros for struct Client
3921
3922         * ircd/m_connect.c: use new accessor macros for struct Client;
3923         removed some dead code
3924
3925         * ircd/m_burst.c: use new accessor macros for struct Client
3926
3927         * ircd/m_away.c: use new accessor macros for struct Client
3928
3929         * ircd/m_admin.c: use new accessor macros for struct Client
3930
3931         * ircd/hash.c: missed a couple of accesses to a struct Client
3932
3933         * ircd/gline.c: missed a couple of accesses to a struct Client
3934
3935         * ircd/crule.c: missed a couple of accesses to a struct Client
3936
3937         * ircd/class.c: missed an access to a struct Client
3938
3939         * ircd/channel.c: missed a couple of accesses to a struct Client
3940
3941         * ircd/IPcheck.c: missed an access to a struct Client
3942
3943         * include/querycmds.h: fix a couple of stats macros to use
3944         structure accessor macros
3945
3946         * include/client.h: change structure member names to highlight any
3947         places in the code I've missed
3948
3949 2000-12-12  Kevin L. Mitchell  <klmitch@mit.edu>
3950
3951         * ircd/whowas.c: use new struct Client accessor macros
3952
3953         * ircd/whocmds.c: use new struct Client accessor macros
3954
3955         * ircd/send.c: use new struct Client accessor macros
3956
3957         * ircd/s_user.c: use new struct Client accessor macros; removed
3958         some dead code
3959
3960         * ircd/s_serv.c: use new struct Client accessor macros; removed
3961         some dead code
3962
3963         * ircd/s_numeric.c: use new struct Client accessor macros
3964
3965         * ircd/s_misc.c: use new struct Client accessor macros
3966
3967         * ircd/s_debug.c: use new struct Client accessor macros
3968
3969         * ircd/s_conf.c: use new struct Client accessor macros
3970
3971         * ircd/s_bsd.c: use new struct Client accessor macros
3972
3973         * ircd/s_auth.c: use new struct Client accessor macros
3974
3975         * ircd/parse.c: use new struct Client accessor macros
3976
3977         * ircd/packet.c: use new struct Client accessor macros
3978
3979         * ircd/numnicks.c: use new struct Client accessor macros
3980
3981         * ircd/motd.c: use new struct Client accessor macros
3982
3983         * ircd/listener.c: use new struct Client accessor macros
3984
3985         * ircd/list.c: use new struct Client accessor macros
3986
3987         * ircd/jupe.c: use new struct Client accessor macros
3988
3989         * ircd/ircd_snprintf.c: use new struct Client accessor macros
3990
3991         * ircd/ircd_reply.c: use new struct Client accessor macros
3992
3993         * ircd/ircd_relay.c: use new struct Client accessor macros
3994
3995         * ircd/ircd.c: use new struct Client accessor macros
3996
3997         * ircd/gline.c: catch some instances of me.<stuff> I missed
3998         previously
3999
4000         * ircd/client.c: use cli_ instead of con_
4001
4002         * ircd/class.c: use cli_ instead of con_
4003
4004         * ircd/channel.c: use cli_ instead of con_
4005
4006         * ircd/IPcheck.c: use cli_ instead of con_; catch some instances
4007         of me.<stuff> I missed previously
4008
4009         * include/client.h: use cli_ instead of con_...seemed like a good
4010         idea at the time *shrug*
4011
4012 2000-12-11  Kevin L. Mitchell  <klmitch@mit.edu>
4013
4014         * ircd/hash.c: use struct Client accessor macros
4015
4016         * ircd/gline.c: use struct Client accessor macros
4017
4018         * ircd/crule.c: use struct Client accessor macros
4019
4020         * ircd/client.c: use struct Client accessor macros; remove some
4021         dead code
4022
4023         * ircd/class.c: use struct Client accessor macros
4024
4025         * ircd/channel.c: use struct Client accessor macros; remove some
4026         dead code
4027
4028         * ircd/IPcheck.c: use struct Client accessor macros
4029
4030         * include/numnicks.h: use struct Client accessor macros
4031
4032         * include/client.h: first step to divorcing struct Client and
4033         struct Connection--define accessor macros and use them
4034
4035         * ircd/gline.c: When Uworld removed Uworld-set G-lines, only the
4036         uplink would remove them.  This is because the removal protocol
4037         message wasn't being sent to the uplinks.  This is fixed by fixing
4038         propagate_gline() to send the proper number of arguments depending
4039         on whether or not we're adding or deleting the Uworld gline, and
4040         by having gline_deactivate() make sure to turn off the active bit
4041         and call propagate_gline() if it's a Uworld gline
4042
4043 2000-12-10  Kevin L. Mitchell  <klmitch@mit.edu>
4044
4045         * ircd/os_generic.c: make sure IOV_MAX gets defined, just in case
4046
4047         * ircd/os_bsd.c: apparently BSD doesn't have IOV_MAX defined
4048         anywhere intelligent...
4049
4050 2000-12-09  Kevin L. Mitchell  <klmitch@mit.edu>
4051
4052         * ircd/send.c (send_queued): call deliver_it with appropriate
4053         arguments
4054
4055         * ircd/s_serv.c: reorder a couple of headers--cosmetic
4056
4057         * ircd/s_bsd.c (deliver_it): make deliver_it work with a struct
4058         MsgQ
4059
4060         * ircd/os_solaris.c (os_sendv_nonb): function for calling writev
4061         with appropriate iovec
4062
4063         * ircd/os_linux.c (os_sendv_nonb): function for calling writev
4064         with appropriate iovec
4065
4066         * ircd/os_generic.c (os_sendv_nonb): function for calling writev
4067         with appropriate iovec
4068
4069         * ircd/os_bsd.c (os_sendv_nonb): function for calling writev with
4070         appropriate iovec
4071
4072         * ircd/msgq.c (msgq_mapiov): add a len_p argument for totalling up
4073         exactly how much we're trying to write out to the fd
4074
4075         * include/s_bsd.h: make deliver_it take a struct MsgQ
4076
4077         * include/msgq.h: add a len_p argument to msgq_mapiov to help
4078         detect short writes that indicate possible socket blocking
4079
4080         * include/ircd_osdep.h: declare os_sendv_nonb()
4081
4082         * ircd/channel.c (modebuf_mode): don't add empty modes...
4083
4084 2000-12-08  Kevin L. Mitchell  <klmitch@mit.edu>
4085
4086         * include/send.h: add prio argument to send_buffer to select
4087         between normal and priority queues
4088
4089         * ircd/s_user.c (send_user_info): add prio argument to send_buffer
4090         call
4091
4092         * ircd/m_ison.c (m_ison): add prio argument to send_buffer call
4093
4094         * ircd/ircd_reply.c (send_reply): add prio argument to send_buffer
4095         call
4096
4097         * ircd/channel.c (send_channel_modes): add prio argument to
4098         send_buffer call
4099
4100         * ircd/send.c (send_buffer): add a prio argument to select the
4101         priority queue; update send.c functions to use it
4102
4103         * ircd/msgq.c (msgq_add): remove msgq_prio; fold msgq_link and
4104         msgq_add; add a prio argument to msgq_add to select the priority
4105         queue
4106
4107         * include/msgq.h: remove msgq_prio; add a prio argument to
4108         msgq_add
4109
4110         * ircd/send.c: remove sendbuf; remove GODMODE code; switch to
4111         using msgq functions instead of dbuf functions; remove old, dead
4112         sendto_* functions; redo send_buffer to take a struct MsgBuf;
4113         rework sendcmdto_* functions to make use of the new struct MsgBuf
4114
4115         * ircd/s_user.c: remove hunt_server; restructure send_user_info to
4116         make appropriate use of struct MsgBuf
4117
4118         * ircd/s_debug.c (count_memory): count memory used by the MsgQ
4119         system and report it
4120
4121         * ircd/s_conf.c (read_configuration_file): use
4122         sendto_opmask_butone instead of the now dead sendto_op_mask
4123
4124         * ircd/s_bsd.c: switch to using appropriate MsgQLength and other
4125         calls on sendQ
4126
4127         * ircd/parse.c (parse_server): get rid of a piece of GODMODE code
4128
4129         * ircd/msgq.c: add msgq_append and msgq_bufleft; fix a bug in
4130         msgq_clean
4131
4132         * ircd/m_version.c: fix spelling in comments marking dead code
4133
4134         * ircd/m_userip.c (userip_formatter): restructure to make use of
4135         struct MsgBuf
4136
4137         * ircd/m_userhost.c (userhost_formatter): restructure to make use
4138         of struct MsgBuf
4139
4140         * ircd/m_stats.c: use MsgQLength on a sendQ
4141
4142         * ircd/m_settime.c: use MsgQLength instead of DBufLength on a
4143         sendQ; mark a piece of dead code
4144
4145         * ircd/m_names.c: use send_reply instead of sendto_one
4146
4147         * ircd/m_mode.c: use new mode; remove old dead code
4148
4149         * ircd/m_ison.c (m_ison): restructure to make use of struct MsgBuf
4150
4151         * ircd/m_burst.c: use BUFSIZE instead of IRC_BUFSIZE; remove old
4152         dead code
4153
4154         * ircd/listener.c (accept_connection): use sendto_opmask_butone
4155         instead of sendto_op_mask
4156
4157         * ircd/list.c (free_client): use MsgQClear to clear sendQ
4158
4159         * ircd/ircd_reply.c: remove send_error_to_client; restructure
4160         send_reply to make use of struct MsgBuf
4161
4162         * ircd/dbuf.c (dbuf_put): remove argument to flush_sendq_except,
4163         since its no longer used (at least currently)
4164
4165         * ircd/channel.c: restructure send_channel_modes to make use of
4166         struct MsgBuf; remove set_mode, add_token_to_sendbuf, cancel_mode,
4167         and send_hack_notice; use BUFSIZE instead of IRC_BUFSIZE
4168
4169         * ircd/Makefile.in: add msgq.c to list of sources; run make depend
4170
4171         * ircd/IPcheck.c: use sendcmdto_one instead of sendto_one
4172
4173         * include/send.h: send_buffer now takes a struct MsgBuf * instead
4174         of a char *; flush_sendq_except now takes no arguments, as sendq
4175         flushing currently only happens in dbuf.h and sendQ is a struct
4176         MsgQ; remove prototypes for a lot of old sendto_* functions that
4177         aren't used anymore; remove sendbuf and IRC_BUFSIZE--the former is
4178         no longer needed, and the latter is identical to BUFSIZE in
4179         ircd_defs.h
4180
4181         * include/s_user.h: make InfoFormatter take a struct MsgBuf*
4182         instead of a char *; also make it return void, instead of char *
4183
4184         * include/msgq.h: add msgq_append and msgq_bufleft functions
4185
4186         * include/client.h: use a struct MsgQ instead of a struct DBuf for
4187         sendq
4188
4189         * doc/Configure.help: Remove help for compile-time options that
4190         have gone away
4191
4192         * config/config-sh.in: remove CONFIG_NEWMODE
4193
4194         * ircd/m_server.c (mr_server): don't send server IPs in any server
4195         notices
4196
4197         * ircd/msgq.c (msgq_vmake): add \r\n to messages
4198
4199 2000-12-07  Kevin L. Mitchell  <klmitch@mit.edu>
4200
4201         * include/msgq.h: declare the MsgQ API
4202
4203         * ircd/msgq.c: implementation of new MsgQ system
4204
4205 2000-12-06  Kevin L. Mitchell  <klmitch@mit.edu>
4206
4207         * ircd/ircd_features.c: #include was supposed to be for
4208           ircd_features.h, not features.h--missed when I had to do a
4209           rename because of namespace collision
4210
4211 2000-12-05  Greg Sikorski <gte@atomicrevs.demon.co.uk>
4212         * ircd/m_topic.c: Added missing braces that caused all remote
4213           topics to be ignored.
4214
4215 2000-12-04  Kevin L. Mitchell  <klmitch@mit.edu>
4216
4217         * ircd/m_create.c: I'm tired of the exit_client warning :)
4218         (ms_create): discovered that exit_client() was being called with
4219         too few arguments
4220
4221         * ircd/s_misc.c (exit_client): remove all dependance on
4222         FNAME_USERLOG, since that's now gone; log only to LS_USER
4223
4224         * ircd/s_debug.c: USE_SYSLOG no longer means anything
4225
4226         * ircd/m_oper.c (m_oper): no longer log to LS_OPERLOG--we already
4227         log to LS_OPER
4228
4229         * ircd/m_kill.c: no longer conditionalize on SYSLOG_KILL
4230
4231         * ircd/ircd_log.c: remove LS_OPERLOG, LS_USERLOG
4232
4233         * include/ircd_log.h: remove LS_OPERLOG, LS_USERLOG--they serve
4234         the same purpose as LS_USER and LS_OPER
4235
4236         * config/config-sh.in: remove no longer relevant log config
4237         variables
4238
4239         * ircd/uping.c (uping_init): use log_write instead of ircd_log
4240
4241         * ircd/s_misc.c (exit_client): use log_write instead of ircd_log
4242
4243         * ircd/s_conf.c: use log_write instead of ircd_log
4244
4245         * ircd/s_bsd.c (report_error): use log_write instead of ircd_log
4246
4247         * ircd/s_auth.c (timeout_auth_queries): use log_write instead of
4248         ircd_log
4249
4250         * ircd/res.c (send_res_msg): use log_write instead of ircd_log
4251
4252         * ircd/m_who.c: use log_write instead of write_log; no longer
4253         conditionalize on WPATH; mark dead ircd_log calls
4254
4255         * ircd/m_uping.c: mark dead ircd_log call
4256
4257         * ircd/m_server.c (mr_server): use log_write instead of ircd_log
4258
4259         * ircd/m_restart.c: use log_write instead of ircd_log; mark dead
4260         ircd_log calls
4261
4262         * ircd/m_rehash.c (mo_rehash): use log_write instead of ircd_log
4263
4264         * ircd/m_oper.c: use log_write instead of ircd_log; no longer
4265         conditionalize on FNAME_OPERLOG; mark dead ircd_log calls
4266
4267         * ircd/m_kill.c: mark dead ircd_log calls
4268
4269         * ircd/m_connect.c: use log_write instead of ircd_log; mark dead
4270         ircd_log
4271
4272         * ircd/m_clearmode.c: use log_write instead of write_log; no
4273         longer conditionalize on OPATH
4274
4275         * ircd/jupe.c: use log_write instead of write_log; no longer
4276         conditionalize on JPATH
4277
4278         * ircd/ircd_log.c: add USER subsystem; remove ircd_log() compat
4279         function; fix a couple of bugs
4280
4281         * ircd/ircd_alloc.c: fixed a comment
4282
4283         * ircd/ircd.c: use log_write instead of ircd_log; fold server
4284         notice generation in a couple of cases
4285
4286         * ircd/gline.c: use log_write instead of write_log; no longer
4287         conditionalize on GPATH
4288
4289         * ircd/channel.c (modebuf_flush_int): use log_write instead of
4290         write_log; no longer conditionalize on OPATH
4291
4292         * ircd/Makefile.in: run make depend, since dependencies have
4293         changed
4294
4295         * doc/example.conf: add system USER to documentation
4296
4297         * include/ircd_log.h: add system USER; remove old ircd_log()
4298         declarations
4299
4300 2000-12-04  Isomer <isomer@coders.net>
4301         * ircd/m_names.c: Add NAMES_EON to do_names to say add a
4302         'end_of_names' reply when done.
4303         * ircd/m_join.c: use NAMES_EON as mentioned above
4304
4305 2000-12-01  net  <simms@LUCIDA.QC.CA>
4306
4307         * ircd/motd.c: add a freelist for struct Motds
4308
4309 2000-11-30  Kevin L. Mitchell  <klmitch@mit.edu>
4310
4311         * ircd/s_stats.c (report_feature_list): report features--only
4312         local opers can see logging configuration, since it doesn't really
4313         mean anything to users
4314
4315         * ircd/s_err.c: add reply messages for new feature subsystem
4316
4317         * ircd/s_conf.c: add F lines to .conf
4318
4319         * ircd/parse.c: add the message descriptions for /set, /reset, and
4320         /get
4321
4322         * ircd/m_stats.c: add /stats f
4323
4324         * ircd/m_set.c (mo_set): implement /set
4325
4326         * ircd/m_reset.c (mo_reset): implement /reset
4327
4328         * ircd/m_rehash.c: /rehash m now flushes MOTD cache, and /rehash l
4329         reopens log files (for log file rotation)
4330
4331         * ircd/m_get.c (mo_get): implement /get
4332
4333         * ircd/ircd_log.c: use int instead of void return value; add
4334         log_report_features() and log_canon(); fix a function that
4335         disappears if DEBUGMODE not #define'd
4336
4337         * ircd/ircd_features.c: functions to manipulate feature settings
4338         either from the config file or with the new /set, /reset, and /get
4339         commands
4340
4341         * ircd/Makefile.in: add new .c files, run make depend
4342
4343         * include/s_stats.h: declare report_feature_list() (/stats f
4344         handler)
4345
4346         * include/numeric.h: add RPL_STATSFLINE, RPL_FEATURE,
4347         ERR_NOFEATURE, ERR_BADLOGTYPE, ERR_BADLOGSYS, and ERR_BADLOGVALUE
4348         reply numerics
4349
4350         * include/msg.h: add defines for SET, RESET, and GET
4351
4352         * include/ircd_log.h: add a function to canonicalize subsystem
4353         names; change some void return values to int
4354
4355         * include/ircd_features.h: new features subsystem handles all the
4356         manipulation of special features, like log files
4357
4358         * include/handlers.h: declare new mo_{s,res,g}et message handlers
4359         for fiddling with features run-time
4360
4361         * include/client.h (SNO_DEFAULT): don't set SNO_DEBUG by default;
4362         seemed like a good idea at the time...
4363
4364         * doc/example.conf: document new F lines
4365
4366 2000-11-29  Kevin L. Mitchell  <klmitch@mit.edu>
4367
4368         * ircd/s_debug.c: rewrite debug_init() and vdebug() in terms of
4369         new logging functions, which have special support for the debug
4370         log; added loop detection to vdebug(), so that I can
4371         sendto_opmask_butone() from log_vwrite() without incurring another
4372         call to vdebug()
4373
4374         * ircd/s_conf.c (rehash): call log_reopen() from rehash routine;
4375         this allows log file rotations
4376
4377         * ircd/m_kill.c: call log_write_kill() instead of ircd_log_kill()
4378
4379         * ircd/ircd_log.c: much more work fleshing out the interface;
4380         removed old interface; included backwards-compat ircd_log()
4381         function that logs to subsystem LS_OLDLOG
4382
4383         * ircd/ircd.c: switch to new log_init()/log_close()/log_reopen()
4384         functions
4385
4386         * include/ircd_log.h: include stdarg.h for va_list; move ordering
4387         warning to top of file; fill out LogSys enum; declare new
4388         log_debug_init(), log_vwrite(), log_write_kill(), and
4389         log_[sg]et_*() functions; add flags argument to log_write();
4390         defined flags to inhibit various logging actions
4391
4392         * include/client.h: added support for new SNO_DEBUG, enabled only
4393         if DEBUGMODE is defined
4394
4395 2000-11-28  Kevin L. Mitchell  <klmitch@mit.edu>
4396
4397         * ircd/ircd_log.c: make sure the various LOG_* constants are
4398         defined (probably not needed, since #include <syslog.h> isn't
4399         conditional); various static data needed for the new logging
4400         functions; definitions of new logging functions
4401
4402         * include/ircd_log.h: new LogSys enum, declarations for part of
4403         new logging API
4404
4405         * ircd/motd.c: we were setting type to MOTD_CLASS unconditionally,
4406         which was of course stupid; switched to using switch/case in
4407         initialization in motd_create(); zero the MotdList.other pointer
4408         from motd_clear()
4409
4410         * ircd/ircd.c (main): motd_init() has to come before init_conf(),
4411         or we overwrite init_conf()'s hard work with respect to T-lines
4412
4413 2000-11-27  Kevin L. Mitchell  <klmitch@mit.edu>
4414
4415         * ircd/s_stats.c: comment out report_motd_list and include a
4416         reference to motd_report()
4417
4418         * ircd/s_conf.c: rip out the old MOTD manipulation functions; call
4419         motd_add() from the conf parser; call motd_clear() from the rehash
4420         routine; remove the no longer needed memory clearing and reloading
4421         stuff from the rehash service routine
4422
4423         * ircd/motd.c: loads new API, including static internal functions
4424         to do allocation/deallocation, etc.
4425
4426         * ircd/m_stats.c: use new motd_report() instead of
4427         report_motd_list()
4428
4429         * ircd/m_motd.c: use new syntax for motd_send()
4430
4431         * ircd/ircd.c: use new motd_init() function
4432
4433         * ircd/Makefile.in (SRC): forgot to add motd.c to SRC in
4434         Makefile.(in); also ran make depend
4435
4436         * include/motd.h: don't need config.h, but now do need time.h;
4437         define new structures and constants; redefine old API and define
4438         new functions
4439
4440 2000-11-22  Kevin L. Mitchell  <klmitch@mit.edu>
4441
4442         * ircd/s_user.c (register_user): use motd_signon() instead of
4443         calling m_motd; much cleaner this way
4444
4445         * ircd/motd.c: write the new motd_* stuff to make MOTD handling
4446         less of a crock
4447
4448         * ircd/m_motd.c: rewrite m{,s}_motd to call out to new motd_*
4449         functions
4450
4451         * include/motd.h: define new MOTD API stuff
4452
4453 2000-11-20  Kevin L. Mitchell  <klmitch@mit.edu>
4454
4455         * ircd/ircd_reply.c (protocol_violation): rewrite
4456         protocol_violation so it'll actually work
4457
4458         oh, yeah, use %s -> cptr->name, instead of %c -> cptr, so we get
4459         the client's real name in there.
4460
4461         * ircd/m_motd.c (m_motd): Iso's addition of get_client_class(sptr)
4462         resulted in core dumps if NODEFAULTMOTD is defined, because m_motd
4463         gets called from register_user with a NULL sptr.  This is probably
4464         a design problem, but this bandaid will do for now...
4465
4466 2000-11-19  Isomer <isomer@coders.net>
4467         * ircd/ircd_reply.c: added 'protocol_violation', thus alerting us
4468         to problems in the server<->server protocol.
4469
4470         * ircd/m_connect.c: allow remote connects with a port of '0'
4471         meaning to use the port in the config file.
4472
4473         * ircd/m_create.c: Enable hacking protection, lets see how far we
4474         get.
4475
4476         * ircd/m_error.c: The RFC says never accept ERROR from unreg'd
4477         clients, so we don't any more.
4478
4479         * ircd/m_kill.c: The kill path is now made up of numnicks of servers,
4480         and the user@host is displayed of the victim.
4481
4482         * ircd/m_map.c: reloaded 'dump_map'.
4483
4484         * ircd/m_trace.c: allow per class T:
4485
4486         * ircd/m_stats.c: allow local opers /remote stats anywhere on the 'net.
4487
4488 2000-11-17  Isomer <isomer@coders.net>
4489
4490         * ircd/m_topic.c: Fixed bug where we'd only send to clients topics
4491         that were the *same* instead of different.  Oh the embarrasment!
4492
4493         * ircd/IPcheck.c: Merged net's fix.
4494
4495 2000-11-02  Kevin L. Mitchell  <klmitch@mit.edu>
4496
4497         * ircd/m_whois.c: remove compiler warning by adding a newline to
4498         end of file
4499
4500         * ircd/m_names.c: moved the flags up to s_user.h
4501
4502         * ircd/m_join.c: call do_names instead of m_names; restructure
4503         ms_join to never transmute a JOIN into a CREATE, but use the TS in
4504         the JOIN (if present) to timestamp the channel
4505
4506         * ircd/channel.c: send JOINs individually, instead of grouping
4507         them, so that we can send the channel's creation time
4508
4509         * include/s_user.h: declare do_names()
4510
4511 2000-10-30  Isomer <isomer@coders.net>
4512         * ircd/m_oper.c: Fixed warning
4513
4514 2000-10-30  Isomer <isomer@coders.net>
4515         * ircd/m_oper.c: Fixed over agressive cut and no paste
4516
4517 2000-10-30  Isomer <isomer@coders.net>
4518
4519         * ircd/m_topic.c: Restructured, fixed bug where topics on local
4520         channels are propergated (I forget who pointed this out to me, but
4521         thanks anyway).  Also to save bandwidth don't send the topic to
4522         users if the topic is already the same on the server (but still
4523         propergate to other servers).  X/W's "autotopic" feature must
4524         chew a lot of bandwidth, hopefully this will help reduce this.
4525
4526         * doc/rfc1459.rfc: Updated documentation on /topic.
4527
4528         * ircd/listener.c: snotice warnings about failed accept()'s
4529         potentially warning admins that they're running out of fd's.
4530
4531         * ircd/stats.c, ircd/class.c: Removed /stats v, added number of
4532         people in a class in /stats y
4533
4534         * ircd/m_create.c: Checks for timewarp hacking and squit's
4535         evil servers. (currently disabled)
4536         
4537
4538 2000-10-30  net <simms@lucida.qc.ca>
4539         
4540         * ircd/gline.c: Fixed various bugs Isomer left behind.
4541
4542 2000-10-26  Kevin L. Mitchell  <klmitch@mit.edu>
4543
4544         * ircd/m_join.c (m_join): reply on attempt to join a BADCHANed
4545         channel is now ERR_BANNEDFROMCHAN instead of ERR_BADCHANNAME
4546
4547 2000-10-24  Kevin L. Mitchell  <klmitch@mit.edu>
4548
4549         * ircd/channel.c: ok, now last mode rules; mode +ps will always
4550         result in +s (and won't send a mode if the channel is already +s);
4551         mode +sp will always result in +p; -n+n on a +n channel results in
4552         no mode change; -n+n on a -n channel results in a +n mode change;
4553         etc.
4554
4555 2000-10-23  Kevin L. Mitchell  <klmitch@mit.edu>
4556
4557         * ircd/channel.c: add "add" and "del" elements to ParseState to
4558         avoid not-too-pretty -p+s when +s is sufficient; fix a bug in
4559         mode_parse_limit that caused it to clear all channel modes
4560         prematurely; restructure mode_parse_mode to avoid calling
4561         modebuf_mode too early (ties in with first mentioned change);
4562         better logic for +p/+s mutual exclusivity; initialize "add" and
4563         "del" elements in mode_parse; send simple modes down to
4564         modebuf_mode after the loop in mode_parse
4565
4566 2000-09-28  Greg Sikorski <gte@atomicrevs.demon.co.uk>
4567         * ircd/m_names.c: Fixed a non-lethal logic error that 
4568         triggers an assert() in find_member_link while debugging.
4569         (Spotted by Maniac-).
4570 2000-09-19  Thomas Helvey <helveytw@home.com>
4571         * ircd/s_conf.c: move K:lines to their own list and data
4572         structures, add supporting code.
4573         * ircd/m_stats.c: cleanup stats processing a bit move
4574         kline listing code to a new function, haven't figured
4575         out where it goes yet tho'
4576         * ircd/s_stats.c: added K:line bulk lister
4577         * include/s_conf.h: added new DenyConf struct
4578         * *[ch]: fixeup code that depended on changes
4579
4580 2000-09-17  Thomas Helvey <helveytw@home.com>
4581         * ircd/class.c: encapsulate class list
4582         * include/class.h: clean up classes
4583         * * fixup code that depended on changes
4584
4585 2000-09-17  Thomas Helvey <helveytw@home.com>
4586         * ircd/s_conf.c: add me to local conf
4587         * include/s_conf.h: move CONF_ME macro to chkconf.c
4588         * ircd/s_bsd.c: cleanup initialization, allow virtual host
4589         to be changed by rehash
4590
4591 2000-09-17  Thomas Helvey <helveytw@home.com>
4592         * include/class.h: add missing prototype
4593         * ircd/class.c: make argument to get_conf_class const
4594
4595 2000-09-17  Thomas Helvey <helveytw@home.com>
4596         * ircd/*.c: merged in changes from 2.10.10.pl12, cleanup
4597         merge conflicts.
4598         * ircd/*.h: merged in changes from 2.10.10.pl12, cleanup
4599         merge conflicts
4600
4601 2000-09-16  Thomas Helvey <helveytw@home.com>
4602         * ircd/s_conf.c: add code for server struct
4603         * ircd/client.c: copy of class.c sort of, new file for client
4604         specific operations, will move things here as appropriate,
4605         currently only one function is exported from here.
4606         * ircd/*.c: general logic cleanups, convert negatives to
4607         positives in places.
4608
4609 2000-09-16  Thomas Helvey <helveytw@home.com>
4610         * ircd/s_conf.c: add code for new crule data structs, strip quotes
4611         * ircd/crule.c: clean up scary casting a bit, type safety stuff
4612         * include/s_conf.h: add CRuleConf struct and support, remove
4613         unused constants
4614         * include/crule.h: type safety cleanups
4615         * ircd/*.c: fixup code that depended on stuff I changed
4616
4617 2000-09-15  Thomas Helvey <helveytw@home.com>
4618         * ircd/s_conf.c: start adding code for new conf data structs, changed
4619         listeners, admin line, motd lines, class lines. Move validate_hostent
4620         to resolver. General mayhem.
4621         * include/s_conf.h: new data structs and accessors
4622         * ircd/res.c: move validate_hostent here, rewrite, use regular
4623         expression for validation.
4624         * doc/example.conf: update docs for port
4625
4626 2000-09-14  Thomas Helvey <helveytw@home.com>
4627         * ircd/s_conf.c (conf_init): rewrite conf file parser, start to break
4628         up conf_init into managable chunks.
4629         * ircd/listener.c (set_listener_mask): fix logic bug core dump.
4630         * include/s_conf.h: add new data struct for local info (unwinding the mess).
4631
4632 2000-09-13  Thomas Helvey <helveytw@home.com>
4633         * ircd/list.c: put Clients in free lists, pre-allocate MAXCONNECTIONS
4634         local clients.
4635         * ircd/list.c: put SLinks in free lists
4636         * ircd/channel.c: put Memberships in free lists
4637         * ircd/ircd.c: rearrange initializations a bit in main
4638         Note: With these changes, ircd NEVER frees Clients, SLinks or
4639         Memberships. It will also rarely need to allocate new
4640         ones during net bursts and other disruptions. This should
4641         cut down on memory fragmentation a bit as well.
4642
4643 2000-08-30  Kevin L. Mitchell  <klmitch@mit.edu>
4644
4645         * ircd/m_names.c (do_names): pull-up from do_names fix in
4646         u2.10.10.pl11
4647
4648 2000-07-15  Perry Lorier       <Isomer@coders.net>
4649         * various: IP only k:'s and G:'s now do bit tests instead of two(!) 
4650                  match()'s.  Major Major cpu savings.  Also speed up the
4651                  other case slightly.  As a side effect you can now
4652                  k/Gline *@10.0.0.0/8.  I'll do bans tomorrow, it's nearing
4653                  3am.
4654
4655 2000-07-15  Perry Lorier       <Isomer@coders.net>
4656         * various: Fixed warnings after compiling on an alpha.
4657 2000-07-09  Perry Lorier       <Isomer@coders.net>
4658         * doc/ircd.8: Applied grammitical changes by Liandrin, applied
4659                       changes suggested by various other people.
4660         * ircd/IPcheck.c: More bug fixes.  Current problem appears to be
4661                         that it gets a corrupt entry somehow.
4662 2000-07-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
4663         * ircd/m_oper.c: Clean up compiler warning.
4664
4665 2000-07-08  Perry Lorier       <Isomer@coders.net>
4666         * doc/ircd.8: Updated the documentation, it was slightly out of date
4667                       being updated around 1989.
4668         * ircd/m_whois.c: Rewrote for clarity, and probably a bit more speed.
4669                           fixed a few minor glitches.
4670         * doc/rfc1459.unet: Updated.
4671         * ircd/IPcheck.c: Fixed more bugs.
4672         * ircd/s_bsd.c: We now keep track of servers we've conected.
4673
4674 2000-07-02  Perry Lorier       <Isomer@coders.net>
4675         * ircd/s_misc.c: Fixed remote IPcheck bug.  Ok, I'm a moron, so sue
4676                         me.  Thanks to Hektik, thanks thanks thanks thanks
4677                         thanks thanks thanks thanks thank thanks thank thanks
4678
4679 2000-07-01  Perry Lorier       <Isomer@coders.net>
4680         * ircd/s_conf.c: "Fixed" the "bug" where people would "evade" K:'s.
4681         * ircd/s_conf.c, include/IPcheck.h: Fixed compile warnings.
4682
4683 2000-06-22  Perry Lorier       <Isomer@coders.net>
4684         * ircd/IPcheck.c: Large chunks redone.
4685         * ircd/s_conf.c: Changes due to IPcheck - ONE nolonger supported,
4686                         single AND double digit limits are allowed now.
4687         * misc other: Changes to IPcheck.
4688
4689 2000-06-30  Perry Lorier       <Isomer@coders.net>
4690         * ircd/ircd.c: Fix command line parameter bugs.
4691
4692 2000-06-30  Perry Lorier       <Isomer@coders.net>
4693         * ircd/m_kill.c: Fixed bug with LOCAL_KILL_ONLY
4694         * ircd/m_nick.c: Tidied things up.
4695
4696 2000-06-12 Joseph Bongaarts <foxxe@trms.com>
4697         * ircd/m_stats.c: Iso forgot mo_stats when he added /stats v
4698         
4699 2000-05-29  Perry Lorier       <Isomer@coders.net>
4700         * ircd/m_stats.c: add /stats v to do only the last part of the /trace
4701         * ircd/IPcheck.c: Cosmetic change, if we meddle with it enough do
4702                         you think it'll get bored and fix itself?
4703
4704 2000-06-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
4705
4706         * ircd/m_names.c: Clean up compiler warnings.
4707
4708 2000-06-09  Kevin L. Mitchell  <klmitch@mit.edu>
4709
4710         * ircd/channel.c (mode_parse_client): don't send warning if
4711         there's not enough arguments for a +/-o/v; means the habit of
4712         doing "/mode #channel +oooooo bob" doesn't result in a bunch of
4713         error messages
4714
4715 2000-06-04  Greg Sikorski <gte@atomicrevs.demon.co.uk>
4716
4717         * ircd/m_names.c: Re-factor code to remove unneccessary
4718         GlobalChannelList iteration every time someone joins a channel.
4719
4720 2000-06-02  Kevin L. Mitchell  <klmitch@mit.edu>
4721
4722         * ircd/s_user.c: add struct Gline * argument to register_user;
4723         look up global glines and repropagate them if necessary; send
4724         acknowledgement of gline to remote servers when registering users
4725
4726         * ircd/s_serv.c (server_estab): don't send acknowledgement of
4727         local glines to remote servers; do send gline acknowledgement of
4728         bursted users
4729
4730         * ircd/m_user.c (m_user): pass new struct Gline * argument to
4731         register_user
4732
4733         * ircd/m_pong.c: pass new struct Gline * argument to register_user
4734
4735         * ircd/m_nick.c (ms_nick): document protocol change
4736
4737         * ircd/gline.c: support GLINE_LASTMOD
4738
4739         * include/s_user.h: add struct Gline * argument to register_user
4740
4741         * include/gline.h: add GLINE_LASTMOD to look up non-zero lastmods
4742
4743         * ircd/s_conf.c (find_kill): add unsigned int argument to
4744         gline_lookup()
4745
4746         * ircd/gline.c: add GLINE_GLOBAL to lookup or find only global
4747         glines; add unsigned int argument to gline_lookup()
4748
4749         * include/gline.h: add GLINE_GLOBAL flag; add unsigned int
4750         argument to gline_lookup()
4751
4752         * ircd/m_server.c: Resend jupe only when there is no %<lastmod>
4753         parameter, or when it falls out of bounds: see comments prior to
4754         call to jupe_resend(); call server_estab with struct Jupe
4755         parameter, so that we place the appropriate %<lastmod> in the
4756         appropriate place.
4757
4758         * ircd/s_serv.c (server_estab): send %<lastmod> for introduced
4759         server, as well as for servers when we're sending the BURST
4760
4761         * include/s_serv.h: add a struct Jupe * to the arguments for
4762         server_estab() so that we can send the appropriate lastmod
4763         parameter
4764
4765         * ircd/m_gline.c (ms_gline): actually, this should be the
4766         slightest bit more efficient...
4767
4768         * ircd/m_jupe.c (ms_jupe): actually, this should be the slightest
4769         bit more efficient...
4770
4771         * ircd/m_gline.c (ms_gline): inhibit GLINE processing resends
4772         during netburst
4773
4774         * ircd/m_jupe.c (ms_jupe): inhibit JUPE processing resends during
4775         netburst
4776
4777         * ircd/channel.c (joinbuf_join): really remove user from local
4778         channels
4779
4780 2000-05-29  Perry Lorier       <Isomer@coders.net>
4781         * ircd/m_names.c: Removed redundant space. 
4782         * ircd/s_bsd.c: Fixed incorrect syntax on ERROR line.
4783
4784 2000-05-18  Kevin L. Mitchell  <klmitch@mit.edu>
4785
4786         * ircd/m_burst.c (ms_burst): er...that should have been a ",", not
4787         a " "
4788
4789 2000-05-04  Kevin L. Mitchell  <klmitch@mit.edu>
4790
4791         * ircd/channel.c: replace bogus assertions with returns, which is
4792         logically correct; only wipe out limit/key if they were originally
4793         set in the first place; remove user from channel when doing a
4794         PARTALL; only send MODE +o for user CREATEing channel if user is
4795         not MyUser--CREATE will only be used if the channel did not
4796         originally exist, therefore we can assume no one local is on the
4797         channel anyway, and we don't exactly need for the user to see an
4798         explicit +o for themselves
4799
4800         * doc/readme.gline: describe the syntax of the GLINE command
4801
4802         * doc/readme.jupe: update to reflect a couple of changes to JUPE
4803
4804         * ircd/gline.c: don't propagate local changes
4805
4806         * ircd/jupe.c: don't propagate local changes
4807
4808         * ircd/m_gline.c (mo_gline): force local flag when deactivating
4809         glines with 0 lastmod
4810
4811         * ircd/gline.c (gline_deactivate): G-lines with zero lastmod time
4812         are now removed instead of being deactivated
4813
4814         * ircd/m_gline.c (ms_gline): make G-lines of the form "GLINE *
4815         -<mask>" be accepted
4816
4817         * ircd/channel.c (send_channel_modes): deal with one of the last
4818         vestiges of sendbuf
4819
4820         * ircd/m_burst.c (ms_burst): debugged ban processing; removed
4821         debugging hooks
4822
4823         * ircd/channel.c (modebuf_extract): remove debugging
4824         sendto_opmask_butone calls
4825
4826 2000-05-03  Kevin L. Mitchell  <klmitch@mit.edu>
4827
4828         * ircd/channel.c: support a couple of new flags to support using
4829         mode_parse; fix some bugs with 0 struct ModeBuf *; implementation
4830         of modebuf_extract to extract added flags for use by ms_burst
4831
4832         * include/channel.h: a couple of new flags to support using
4833         mode_parse inside ms_burst
4834
4835         * ircd/m_burst.c (ms_burst): brand new implementation of BURST
4836
4837         * ircd/m_endburst.c: add loop to processing of end_of_burst to
4838         free empty channels after the BURST is over.
4839
4840         * ircd/m_server.c: convert to use new send.c functions--I wanted
4841         to rewrite it from scratch, but the logic's pretty complex; I may
4842         still rewrite it, though...
4843
4844 2000-05-02  Thomas Helvey <tomh@inxpress.net>
4845
4846         * ircd/ircd.c: fix broken header include ordering
4847
4848 2000-05-02  Thomas Helvey <tomh@inxpress.net>
4849         
4850         * ircd/IPcheck.c: cleanups for ZenShadow's cleanups
4851         review emailed privately
4852
4853         * include/IPcheck.h: removed unneeded include
4854
4855 2000-05-02  Kevin L. Mitchell  <klmitch@mit.edu>
4856
4857         * ircd/s_user.c (hunt_server): throw in a comment so I know what
4858         the sendto_one is for
4859
4860         * include/querycmds.h (Count_unknownbecomesclient): convert to
4861         sendto_opmask_butone
4862
4863         * ircd/send.c: start removing dead code
4864
4865         * include/send.h: start removing dead code
4866
4867         * ircd/m_rping.c: convert to sendcmdto_one / send_reply /
4868         hunt_server_cmd
4869
4870         * ircd/m_rpong.c: convert to sendcmdto_one / send_reply
4871
4872 2000-05-01  Kevin L. Mitchell  <klmitch@mit.edu>
4873
4874         * ircd/m_stats.c: convert to sendcmdto_one / send_reply
4875
4876         * ircd/m_kick.c: Completely reimplement m_kick
4877
4878         * ircd/channel.c: send_user_joins removed; it was dead code,
4879         anyway...
4880
4881 2000-05-01  Perry Lorier <isomer@coders.net>
4882         * ircd/m_invite.c: Fix for the rest of m_invite.c, and again.
4883         * ircd/channels.c: My fix for the part problem.  Untested, probably
4884                 won't work.  Can't be much worse than the current problem.
4885                 it'll either work or core, take your pick.
4886
4887
4888 2000-04-30  Perry Lorier <isomer@coders.net>
4889         * config/config-sh.in: Fix for CONNEXIT
4890         * ircd/s_{user,misc}.c: Fix for CONNEXIT
4891         * ircd/m_invite.c: Fix for incorrectly numnickified invite.
4892                         (Kev: Want to come talk to me about this?)
4893
4894 2000-04-30  Steven M. Doyle <steven@doyle.net>
4895         * ircd/ircd.c
4896           - general cleanups and readability enhancements
4897           - rewrite of setuid/chroot code.
4898           - server will no longer run as root
4899           - -DPROFIL compile option removed
4900           - Fixed IPcheck API calls
4901  
4902         * config/config-sh.in
4903           - Fixed up chroot compile options
4904           - Added options for debug and profile compiles
4905  
4906         * config/gen.ircd.Makefile
4907           - Support for new debug/profile options
4908  
4909         * ircd/Makefile.in
4910           - Support for new debug/profile options
4911  
4912         * ircd/ircd_signal.c
4913           - Removed -DPROFIL
4914
4915         * include/IPcheck.h
4916           - Removed old API prototypes, added new ones
4917         
4918         * ircd/IPcheck.c
4919           - Readability cleanups (well, I -think-...)
4920           - Changed IPRegistryEntry.last_connect to a time_t.  The previously
4921             used unsigned short was probably causing interesting things after
4922             a client had been connected longer than about 65,535 seconds...
4923           - Removed old API functions.
4924
4925         * ircd/whocmds.c
4926           - Removed IPcheck.h include
4927         
4928         * Additionally modified IPcheck API calls in:
4929           - ircd/m_nick.c
4930           - ircd/m_auth.c
4931           - ircd/s_bsd.c
4932           - ircd/s_conf.c
4933           - ircd/s_misc.c
4934           - ircd/s_serv.c
4935           - ircd/s_user.c
4936         
4937         
4938 2000-04-30  Perry Lorier <isomer@coders.net>
4939         * ircd/s_bsd.c: Sigh. :)
4940         * ircd/m_mode.c: fix for modeless channels by poptix.
4941
4942 2000-04-29  Kevin L. Mitchell  <klmitch@mit.edu>
4943
4944         * ircd/m_join.c: reimplement JOIN in terms of struct JoinBuf
4945
4946         * ircd/channel.c (clean_channelname): make clean_channelname also
4947         truncate long channel names
4948
4949 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
4950
4951         * ircd/m_create.c: reimplement CREATE in terms of struct JoinBuf
4952
4953         * ircd/channel.c: implemented joinbuf_init, joinbuf_join,
4954         joinbuf_flush
4955
4956         * include/channel.h: definitions and declarations for the struct
4957         JoinBuf abstraction
4958
4959 2000-04-29  Perry Lorier <isomer@coders.net>
4960         * ircd/s_bsd.c: Ok, so I thought I compiled and tested this...
4961
4962 2000-04-29  Perry Lorier <isomer@coders.net>
4963         * ircd/s_bsd.c: Add debugging code to IPcheck
4964
4965 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
4966
4967         * include/ircd_reply.h (SND_EXPLICIT): use instead of RPL_EXPLICIT
4968
4969         * ircd/ircd_reply.c (send_reply): use SND_EXPLICIT instead of
4970         RPL_EXPLICIT
4971
4972         * ircd/m_userhost.c (m_userhost): add a dead code comment
4973
4974         * ircd/m_desynch.c: forgot one...
4975
4976         * ircd/m_rehash.c (mo_rehash): er, duplicates :)
4977
4978         * ircd/m_proto.c (proto_send_supported): just change a comment so
4979         it doesn't show up in my scans
4980
4981         * ircd/ircd_reply.c (send_reply): fix a slight bug...
4982
4983         * ircd/s_numeric.c (do_numeric): use new sendcmdto_* functions,
4984         kinda hackish...
4985
4986         * ircd/parse.c (parse_server): argument wrangling to make
4987         processing in do_numeric a little easier to deal with
4988
4989         * ircd/s_serv.c (server_estab): SERVER should come from
4990         acptr->serv->up, not &me
4991
4992         * ircd/m_lusers.c: accidentally left out sptr for a %C
4993
4994         * ircd/send.c: hack to support doing wallchops...
4995
4996         * ircd/m_whowas.c: convert to new send functions
4997
4998         * ircd/m_whois.c: convert to new send functions
4999
5000         * ircd/m_who.c: convert to new send functions
5001
5002         * ircd/m_wallops.c: convert to new send functions
5003
5004         * ircd/m_wallchops.c: convert to new send functions
5005
5006         * ircd/m_version.c: convert to new send functions
5007
5008         * ircd/m_userip.c: convert to new send functions
5009
5010         * ircd/m_userhost.c: convert to new send functions
5011
5012         * ircd/m_uping.c: convert to new send functions
5013
5014         * ircd/m_trace.c: convert to new send functions
5015
5016         * ircd/m_topic.c: convert to new send functions
5017
5018         * ircd/m_time.c: convert to new send functions
5019
5020         * ircd/m_squit.c: convert to new send functions
5021
5022         * ircd/m_silence.c: convert to new send functions
5023
5024         * ircd/m_settime.c: convert to new send functions
5025
5026         * ircd/m_restart.c: convert to new send functions
5027
5028         * ircd/m_rehash.c: convert to new send functions
5029
5030         * ircd/m_privmsg.c: convert to new send functions
5031
5032         * ircd/m_pong.c: convert to new send functions
5033
5034         * ircd/m_ping.c: convert to new send functions
5035
5036         * ircd/m_pass.c: convert to new send functions
5037
5038         * ircd/m_opmode.c: convert to new send functions
5039
5040         * ircd/m_oper.c: convert to new send functions
5041
5042         * ircd/m_notice.c: convert to new send functions
5043
5044         * ircd/m_nick.c: convert to new send functions
5045
5046         * ircd/m_names.c: convert to new send functions
5047
5048         * ircd/m_motd.c: convert to new send functions
5049
5050         * ircd/m_mode.c: convert to new send functions
5051
5052         * ircd/m_map.c: convert to new send functions
5053
5054         * ircd/m_lusers.c: convert to new send functions
5055
5056         * ircd/m_list.c: convert to new send functions
5057
5058         * ircd/m_links.c: convert to new send functions
5059
5060         * ircd/m_kill.c: convert to new send functions
5061
5062         * ircd/m_jupe.c: convert to new send functions
5063
5064         * ircd/m_invite.c: convert to new send functions
5065
5066         * ircd/m_info.c: convert to new send functions
5067
5068         * ircd/m_help.c: convert to new send functions
5069
5070         * ircd/m_gline.c: convert to new send functions
5071
5072         * ircd/m_error.c: convert to new send functions
5073
5074         * ircd/m_endburst.c: convert to new send functions
5075
5076         * ircd/m_die.c: convert to new send functions
5077
5078         * ircd/m_destruct.c: convert to new send functions
5079
5080         * ircd/m_defaults.c: convert to new send functions
5081
5082         * ircd/m_connect.c: convert to new send functions
5083
5084 2000-04-28  Perry Lorier <isomer@coders.net>
5085         * RELEASE.NOTES: Describe a few more undocumented features.
5086         * config/config-sh.in: change the default paths for logging
5087         and the recommended number of channels.
5088         * include/supported.h: Rearrange slightly, added CHANTYPE's
5089
5090 2000-04-27  Kevin L. Mitchell  <klmitch@mit.edu>
5091
5092         * ircd/m_close.c: convert to send_reply
5093
5094         * ircd/m_clearmode.c: convert to send_reply, sendcmdto_serv_butone
5095
5096         * ircd/m_away.c: convert to send_reply and sendcmdto_serv_butone
5097
5098         * ircd/m_admin.c: convert to send_reply and hunt_server_cmd
5099
5100         * ircd/s_user.c (hunt_server_cmd): new hunt_server replacement
5101         that takes cmd and tok arguments, etc.  NOTE: THIS IMPLEMENTATION
5102         HAS A MAJOR HACK!!!  The whole hunt_server architecture should be
5103         carefully rethought...
5104
5105         * ircd/s_stats.c (hunt_stats): use new hunt_server_cmd
5106
5107         * include/s_user.h: hunt_server_cmd -- replacement for hunt_server
5108
5109         * ircd/s_misc.c: *sigh* 2.10.10 doesn't support squitting by
5110         numeric nick; therefore, we have to use the server name
5111
5112         * ircd/m_squit.c (ms_squit): allow to squit by server numeric nick
5113
5114         * ircd/send.c: fix minor bugs
5115
5116         * ircd/s_user.c (check_target_limit): mark dead code so I filter
5117         it when I grep
5118
5119         * ircd/s_serv.c (exit_new_server): mark dead code so I filter it
5120         when I grep
5121
5122         * ircd/parse.c: mark dead code so I filter it when I grep
5123
5124         * ircd/map.c: mark dead code so I filter it when I grep
5125
5126         * ircd/ircd.c: mark dead code so I filter it when I grep
5127
5128         * ircd/ircd_relay.c: convert over to new sendcmdto_*, send_reply
5129         functions
5130
5131         * ircd/channel.c: mark dead code so I filter it when I grep
5132
5133         * ircd/s_stats.c: use send_reply instead of sendto_one w/rpl_str;
5134         hope I'm not stepping on toes...
5135
5136         * ircd/s_conf.c: more sendto_opmask_butone / send_reply
5137         conversions; use ircd_snprintf in a couple of cases to negate the
5138         possibility of buffer overflow
5139
5140 2000-04-26  Kevin L. Mitchell  <klmitch@mit.edu>
5141
5142         * ircd/channel.c: convert as much as possible to new send
5143         semantics
5144
5145         * ircd/send.c (sendcmdto_common_channels): fix a subtle bug --
5146         test member->user->from->fd, not from->fd
5147
5148         * ircd/gline.c (gline_add): go ahead and add badchans; we just
5149         won't look for them in m_gline; this way, they always work...
5150
5151         * ircd/jupe.c: use ircd_vsnprintf conversion specifiers
5152
5153         * ircd/gline.c: since write_log now uses ircd_vsnprintf, use
5154         ircd_vsnprintf conversion specifiers
5155
5156         * ircd/support.c (write_log): use ircd_vsnprintf for write_log, so
5157         I have my conversion specifiers
5158
5159         * ircd/gline.c (do_gline): use send_reply for ERR_YOUREBANNEDCREEP
5160
5161         * ircd/send.c (sendcmdto_flag_butone): explicitly send WALLOPS to
5162         local users
5163
5164         * ircd/s_serv.c (exit_new_server): rewrite exit_new_server to be a
5165         little less brain-dead
5166
5167         * ircd/s_misc.c: use sendcmdto_one, sendrawto_one, and send_reply
5168
5169         * ircd/s_debug.c: use send_reply with RPL_EXPLICIT for
5170         RPL_STATSDEBUG
5171
5172         * ircd/res.c (cres_mem): use send_reply with RPL_EXPLICIT for
5173         RPL_STATSDEBUG
5174
5175         * ircd/list.c (send_listinfo): use send_reply with RPL_EXPLICIT
5176         for RPL_STATSDEBUG
5177
5178         * ircd/m_pong.c: use RPL_EXPLICIT for ERR_BADPING
5179
5180         * ircd/ircd.c: use RPL_EXPLICIT for ERR_BADPING
5181
5182         * ircd/s_user.c (register_user): use RPL_EXPLICIT for
5183         ERR_INVALIDUSERNAME
5184
5185         * ircd/ircd_reply.c (send_reply): support RPL_EXPLICIT
5186
5187         * include/ircd_reply.h (RPL_EXPLICIT): somewhat of a hack to mark
5188         a numeric as needing to use an explicit pattern, which will be the
5189         first argument in the variable argument list
5190
5191         * ircd/s_user.c: use sendrawto_one instead of sendto_one to send
5192         non-prefixed nospoof PING
5193
5194         * ircd/s_bsd.c: use sendrawto_one instead of sendto_one to send
5195         non-prefixed SERVER login
5196
5197         * ircd/ircd.c (check_pings): fix last sendto_one calls (except for
5198         a numeric usage further up)
5199
5200         * include/send.h: declare sendrawto_one
5201
5202         * ircd/send.c (sendrawto_one): new function to use ONLY for
5203         non-prefixed commands, like PING to client, or PASS/SERVER on
5204         server registration
5205
5206 2000-04-25  Kevin L. Mitchell  <klmitch@mit.edu>
5207
5208         * ircd/ircd_snprintf.c (doprintf): implement %H for possible
5209         future expansion (channel numerics?)
5210
5211         * include/ircd_snprintf.h: added documentation to # to explain use
5212         with %C; added documentation for : to explain use with %C; added
5213         documentation for %H for channels
5214
5215         * ircd/whocmds.c: use send_reply
5216
5217         * ircd/userload.c: use sendcmdto_one
5218
5219         * ircd/uping.c: use sendcmdto_one
5220
5221         * ircd/send.c: use new flags to %C format string; ':' prefixes
5222         client name with a colon for local connects, '#' uses
5223         nick!user@host form for local connects
5224
5225         * ircd/s_user.c: use send_reply, sendto_opmask_butone,
5226         sendcmdto_one, sendcmdto_serv_butone, sendcmdto_flag_butone
5227
5228         * ircd/s_serv.c: use sendcmdto_one, sendto_opmask_butone
5229
5230         * ircd/s_bsd.c: use sendto_opmask_butone, send_reply,
5231         sendcmdto_one
5232
5233         * ircd/s_auth.c: use sendto_opmask_butone
5234
5235         * ircd/res.c: use sendcmdto_one
5236
5237         * ircd/ircd_snprintf.c (doprintf): minor bug fixes and some
5238         debugging assertions
5239
5240 2000-04-24  Kevin L. Mitchell  <klmitch@mit.edu>
5241
5242         * ircd/support.c: dumpcore is no longer used, so get rid of it
5243
5244         * ircd/parse.c: use send_reply, sendcmdto_one
5245
5246         * ircd/map.c: use send_reply
5247
5248         * ircd/listener.c: use send_reply
5249
5250         * ircd/jupe.c: use sendto_opmask_butone, send_reply
5251
5252         * ircd/ircd_reply.c: use send_reply
5253
5254         * ircd/ircd.c: use sendto_opmask_butone
5255
5256         * ircd/gline.c: use sendto_opmask_butone, send_reply
5257
5258         * ircd/ircd_snprintf.c (doprintf): make it deal with incompletely
5259         registered clients; make FLAG_ALT print nick!user@host; make
5260         FLAG_COLON print :blah
5261
5262         * ircd/class.c (report_classes): use send_reply instead of
5263         sendto_one
5264
5265         * ircd/hash.c (m_hash): replace sendto_one with sendcmdto_one
5266
5267         * ircd/IPcheck.c (ip_registry_connect_succeeded): replace
5268         sendto_one with sendcmdto_one
5269
5270 2000-04-21  Kevin L. Mitchell  <klmitch@mit.edu>
5271
5272         * ircd/send.c: clean up logic in sendcmdto_channel_butone; use
5273         MyConnect() instead of IsServer() in sendcmdto_flag_butone; define
5274         sendcmdto_match_butone
5275
5276         * include/send.h: declare sendcmdto_match_butone
5277
5278 2000-04-20  Kevin L. Mitchell  <klmitch@mit.edu>
5279
5280         * ircd/jupe.c: update to use send_reply()
5281
5282         * ircd/gline.c: update to use send_reply()
5283
5284         * include/ircd_reply.h: declare send_reply
5285
5286         * ircd/ircd_reply.c (send_reply): send_error_to_client, but for
5287         replies; uses ircd_snprintf
5288
5289         * ircd/send.c: added comments to redirect searchers to appropriate
5290         sendcmdto_* function; moved new functions to end of file; added
5291         explanatory comments; reordered arguments; defined new functions
5292         mentioned below
5293
5294         * ircd/m_jupe.c: reorder arguments to sendcmdto_* functions
5295
5296         * ircd/m_gline.c: reorder arguments to sendcmdto_* functions
5297
5298         * ircd/jupe.c: reorder arguments to sendcmdto_* functions
5299
5300         * ircd/gline.c: reorder arguments to sendcmdto_* functions
5301
5302         * include/send.h: reorder arguments, add explanatory comments,
5303         declare new functions sendcmdto_flag_butone, sendto_opmask_butone,
5304         and vsendto_opmask_butone
5305
5306 2000-04-19  Kevin L. Mitchell  <klmitch@mit.edu>
5307
5308         * ircd/send.c: define sendcmdto_channel_butone, wrote a simplified
5309         vsendto_op_mask that uses '*' instead of the receiving client
5310         nickname
5311
5312         * include/send.h: declare sendcmdto_channel_butone; takes a skip
5313         argument that allows you to skip (or not to skip) deaf users,
5314         users behind bursting servers, and non channel operators
5315
5316 2000-04-17  Kevin L. Mitchell  <klmitch@mit.edu>
5317
5318         * ircd/send.c: new sendcmdto_channel_butserv -- note that old
5319         sendto_channel_butserv has a subtle bug; also wrote
5320         sendcmdto_common_channels.
5321
5322         * include/send.h: declare new sendcmdto_* functions
5323
5324         * ircd/jupe.c: support local deactivations of jupes
5325
5326         * ircd/gline.c: support local deactivations of glines
5327
5328         * include/jupe.h: JUPE_LDEACT allows jupes to be locally
5329         deactivated; if they aren't locally deactivated, then it slaves to
5330         the net-wide activation status; JupeIsRemActive() tests only
5331         whether the jupe is active everywhere else
5332
5333         * include/gline.h: GLINE_LDEACT allows glines to be locally
5334         deactivated; if they aren't locally deactivated, then it slaves to
5335         the net-wide activation status; GlineIsRemActive() tests only
5336         whether the gline is active everywhere else
5337
5338         * ircd/gline.c: detect overlapping G-lines; if an existing, wider
5339         gline expires after the new one will, we drop the new one,
5340         otherwise we add the G-line after that one (so the wide one will
5341         apply first); if the new one contains an existing G-line and if it
5342         will expire after the existing one, we drop the existing one to
5343         save memory
5344
5345         * ircd/m_gline.c (mo_gline): opers could issue remote local
5346         glines when CONFIG_OPERCMDS was off; fixed
5347
5348 2000-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
5349
5350         * ircd/m_jupe.c (mo_jupe): allow target argument to be dropped if
5351         this is a local JUPE
5352
5353         * ircd/gline.c: add flags argument to gline_activate and
5354         gline_deactivate for future expansion
5355
5356         * ircd/m_gline.c: pass flags to gline_activate and
5357         gline_deactivate
5358
5359         * include/gline.h: add flags argument to gline_activate and
5360         gline_deactivate
5361
5362         * ircd/jupe.c: add flags argument to jupe_activate and
5363         jupe_deactivate for future expansion
5364
5365         * include/jupe.h: add flags argument to jupe_activate and
5366         jupe_deactivate
5367
5368         * ircd/m_jupe.c: pass a flags argument to jupe_add instead of
5369         local, active; pass flags to jupe_activate and jupe_deactivate
5370
5371         * include/gline.h: remove dead code
5372
5373         * ircd/gline.c: make gline expire times relative to CurrentTime,
5374         since that should be monotonically increasing, instead of
5375         TStime(), which can be set backwards, and which can therefore
5376         cause an expire time to increase; make local glines be removed
5377         instead of just deactivated; don't let gline_find() look for
5378         user@host glines if the mask being looked up is a channel mask
5379
5380         * ircd/send.c (vsendcmdto_one): forgot to account for the case
5381         where origin is a server and destination is a user
5382
5383         * ircd/jupe.c: make jupe expire times relative to CurrentTime,
5384         since that should be monotonically increasing, instead of
5385         TStime(), which can be set backwards, and which can therefore
5386         cause an expire time to increase; make local jupes be removed
5387         instead of just deactivated
5388
5389         * ircd/ircd_snprintf.c: d'oh, thanks for catching that; short for
5390         limit is fine.  any other warnings I should know about?
5391
5392 2000-04-15  Thomas Helvey <tomh@inxpress.net>
5393
5394         * ircd/*.c: const correctness and type safety cleanups to
5395         get code to compile with C++ compiler. Still has
5396         signed/unsigned comparison warnings.
5397
5398 2000-04-15  Greg Sikorski <gte@atomicrevs.demon.co.uk>
5399
5400         * ircd/userload.c: change <sys/time.h> include to <time.h> for
5401           portability.
5402
5403 2000-04-14  Kevin L. Mitchell  <klmitch@mit.edu>
5404
5405         * ircd/m_gline.c (mo_gline): d'oh, target isn't a numeric; use %C
5406         and convert acptr...
5407
5408         * ircd/s_user.c: move gline_lookup function call into
5409         register_user, where it'll have a username to lookup!
5410
5411         * ircd/m_gline.c: modify to utilize new sendcmdto_* series of
5412         functions; also stuff send_error_to_client into return clauses
5413
5414         * ircd/m_jupe.c: modify to utilize new sendcmdto_* series of
5415         functions; also use send_error_to_client where that makes sense
5416
5417         * ircd/jupe.c: modify to utilize new sendcmdto_* series of
5418         functions; also use send_error_to_client where that makes sense
5419
5420         * ircd/gline.c: modify to utilize new sendcmdto_* series of
5421         functions; also fix gline_lookup() to deal properly with remote
5422         clients--boy, do struct Client and struct User need to be cleaned
5423         up!
5424
5425         * ircd/ircd_snprintf.c (doprintf): a dest of &me is a server,
5426         too...
5427
5428         * ircd/send.c: wrote sendcmdto_one(), vsendcmdto_one(), and
5429         sendcmdto_serv_butone(), all utilizing the %v conversion of
5430         ircd_snprintf()
5431
5432         * include/send.h: define IRC_BUFSIZE, max size of a message;
5433         declare sendcmdto_one(), vsendcmdto_one(), and
5434         sendcmdto_serv_butone()
5435
5436         * include/msg.h: define all the CMD_* constants needed to utilize
5437         the new sendcmdto_* series of functions
5438
5439         * ircd/Makefile.in (SRC): list ircd_snprintf.c; run make depend
5440
5441         * ircd/gline.c: remove old, dead code.
5442
5443         * ircd/m_gline.c (mo_gline): disallow setting of global G-lines
5444         unless CONFIG_OPERCMDS is enabled; disallow listing of all G-lines
5445         (don't advertise proxies); remove dead code
5446
5447         * ircd/parse.c: oper handler for JUPE only lists jupes unless
5448         CONFIG_OPERCMDS is enabled
5449
5450         * ircd/m_jupe.c (mo_jupe): don't compile mo_jupe() if
5451         CONFIG_OPERCMDS is not enabled; we'll disable it in parse.c
5452
5453         * ircd/m_opmode.c (mo_opmode): if CONFIG_OPERCMDS is not enabled,
5454         always return ERR_DISABLED
5455
5456         * ircd/m_clearmode.c (mo_clearmode): if CONFIG_OPERCMDS is not
5457         enabled, always return ERR_DISABLED
5458
5459         * ircd/s_err.c: add error message to indicate disabled commands
5460
5461         * include/numeric.h (ERR_DISABLED): to indicate disabled commands
5462
5463         * doc/Configure.help: add documentation for CONFIG_OPERCMDS
5464
5465         * config/config-sh.in: add CONFIG_OPERCMDS, default both it and
5466         CONFIG_NEW_MODE to 'y' for now
5467
5468         * ircd/gline.c (gline_list): fix a minor formatting bogon
5469
5470         * BUGS: since I fixed that bug, might as well mark it fixed.
5471
5472         * ircd/m_join.c: look up badchans with GLINE_EXACT
5473
5474         * ircd/m_gline.c: fix parc count problems; look up existing
5475         G-lines with GLINE_EXACT; only set new lastmod when
5476         activating/deactivating existing glines if old lastmod was not 0
5477
5478         * ircd/gline.c: forgot to copy the gline reason over; don't
5479         propagate a gline with 0 lastmod if origin is user; add
5480         GLINE_EXACT to force exact matching of gline mask
5481
5482         * ircd/ircd_snprintf.c (doprintf): forgot to deal with the zero
5483         flag properly
5484
5485         * ircd/s_conf.c (find_kill): gline_find() takes a char *userhost,
5486         but gline_lookup() actually takes a client--d'oh.
5487
5488 2000-04-13  Thomas Helvey <tomh@inxpress.net>
5489         * ircd/IPcheck.c: Back port BLMet's bugfix from 2.10.10
5490
5491 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
5492
5493         * ircd/whocmds.c: Don't make idle flag default in /who, to prevent:
5494           "/who * x"
5495           "Gte3 H*iwg Gte@212.49.240.217 :1 :0 I am the one that was."
5496           (Found by Plexus).
5497
5498         * ircd/whocmds.c: Change idle time calc from socket idle to user
5499           idle.
5500
5501 2000-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
5502
5503         * config/aclocal.m4 (unet_CHECK_TYPE_SIZES): check size of void *,
5504         too, for ircd_snprintf.c
5505
5506         * include/ircd_snprintf.h: documentation for ircd_(v)snprintf, in
5507         comments; mostly descended from the Linux manpage for printf, but
5508         also documenting the extensions.
5509
5510         * ircd/ircd_snprintf.c: NULL dest is equivalent to going to a
5511         client; make 'q' be the same as 'L'; remove __inline__; only
5512         define EXTENSION if HAVE_LONG_LONG is defined
5513
5514         * include/handlers.h: declare m_gline()
5515
5516         * ircd/parse.c: gline can be called by users, but it only lists
5517         the glines.
5518
5519         * ircd/s_user.c (set_nick_name): resend gline if a remote server
5520         introduces a glined client
5521
5522         * ircd/s_serv.c (server_estab): burst glines, too
5523
5524         * ircd/gline.c: fix up all the expire times to be offsets;
5525         simplify gline_resend()
5526
5527         * ircd/m_gline.c: begin coding replacements for ms_gline(),
5528         mo_gline(), and m_gline()
5529
5530         * ircd/gline.c (gline_add): allow *@#channel to work correctly;
5531         also, prohibit local BADCHANs if LOCAL_BADCHAN not defined
5532
5533 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
5534
5535         * tools/Bouncer/*: Add comments/documentation/tags.
5536         * tools/Bouncer/*: Add debug defines, make task fork().
5537
5538 2000-04-12  Thomas Helvey <tomh@inxpress.net>
5539         * ircd/s_err.c: Cleanup s_err.c make one table so we
5540         don't have to do anything tricky to get an error string.
5541
5542 2000-04-12  Greg Sikorski <gte@atomicrevs.demon.co.uk>
5543         * Add port bouncer for http (x/w)
5544
5545 2000-04-12  Kevin L. Mitchell  <klmitch@mit.edu>
5546
5547         * ircd/s_conf.c (find_kill): replaced call to find_gline() with a
5548         call to gline_find(); also used GlineReason() instead of direct
5549         reference to structure member
5550
5551         * ircd/m_join.c (m_join): replace bad_channel() calls with calls
5552         to gline_find(name, GLINE_BADCHAN), and also check to see if gline
5553         is active
5554
5555         * ircd/channel.c: nothing seems to be called anywhere...
5556
5557         * ircd/s_err.c: update a couple of replies to dovetail with new
5558         semantics
5559
5560         * ircd/gline.c: begin complete re-implementation of gline.c along
5561         the lines of the final design of jupe.c
5562
5563         * include/gline.h: begin complete re-implementation of gline.c
5564         along the lines of the final design of jupe.c
5565
5566         * ircd/channel.c (mode_process_clients): fix "Deop of +k user on
5567         %s by %s" message...
5568
5569         * ircd/ircd_snprintf.c: my new snprintf()-like functions
5570
5571         * include/ircd_snprintf.h: my new snprintf()-like functions
5572
5573 2000-04-11  Thomas Helvey <tomh@inxpress.net>
5574         * ircd/IPcheck.c: removed old dead code
5575         * ircd/s_user.c (send_user_info): removed non-standard
5576           user not found message for userhost/userip
5577
5578 2000-04-11  Greg Sikorski <gte@atomicrevs.demon.co.uk>
5579
5580         * ircd/s_err.c: Added missing quotes to ERR_DONTCHEAT numeric.
5581         * doc/p10.html: Work on chapter 4.
5582
5583 2000-04-10  Kevin L. Mitchell  <klmitch@mit.edu>
5584
5585         * ircd/channel.c (mode_parse_client): fix coredump on /mode
5586         #foobar +o nosuchnick
5587
5588 2000-04-10  Perry Lorier  <Isomer@coders.net>
5589         * BUGS: Added bug.
5590
5591 2000-04-09  Thomas Helvey <tomh@inxpress.net>
5592         * include/IPcheck.h: fix prototype
5593         * ircd/s_user.c: fix usage of IPcheck_remote_connect
5594         * ircd/IPcheck.c: removed unused args
5595
5596 2000-04-09  Thomas Helvey <tomh@inxpress.net>
5597         * include/IPcheck.h: add proto for IPcheck_expire
5598
5599         * ircd/IPcheck.c: Rewrote
5600
5601         * ircd/ircd.c: Add IPcheck_expire to main message loop
5602
5603         * ircd/s_user.c: Redo target hashing, refactor target code
5604
5605         * include/numeric.h: Cleaned up numerics, added which ones are
5606         in use by other networks and what they are in use for.
5607
5608         * ircd/channel.c: cleaned can_join(), allow anyone through anything
5609         if /invited, simplified the function.  Opers overusing OPEROVERRIDE
5610         will get a message explaining to them not to cheat.
5611
5612         * ircd/m_join.c: cleaned up the various join functions, should be
5613         a lot more efficient.  Still needs work.  Now assumes that s<->s
5614         won't send it a JOIN 0.  Service coders - note this and tread with
5615         care.
5616
5617         * ircd/m_stats.c: added Gte-'s stats doc patch.
5618
5619         * ircd/m_version.c: /version now returns the 005 numeric as well.
5620         as requested by Liandrin.
5621
5622
5623 2000-04-07  Kevin L. Mitchell  <klmitch@mit.edu>
5624
5625         * ircd/m_clearmode.c: add include for support.h for write_log()
5626
5627         * configure: move ircd/crypt/* to tools/*
5628
5629 2000-04-06  Thomas Helvey <tomh@inxpress.net>
5630         * ircd/s_auth.c: Shorten auth connect timeout to 60 seconds
5631           set client host to server alias if connection from localhost
5632
5633 2000-04-06  Perry Lorier <isomer@coders.net>
5634         * ircd/ircd.c: Fix core during pinging (oops)
5635         
5636 2000-04-06  Perry Lorier <isomer@coders.net>
5637         * ircd/send.c: fixed wrong ident being sent to channels bug.
5638         * include/numerics.h: Updated some of the numerics from other
5639         networks.  Flagged some as 'unused' by undernet.
5640
5641 2000-03-30  Perry Lorier <isomer@coders.net>
5642         * ircd/ircd.c: Lets see if this helps the ping problem at all.
5643         * ircd/whocmds.c, /doc/readme.who: Added %l specifier to get idle
5644         time for local clients. (as requested), extended who now returns all
5645         the flags (@+!) so you can tell the complete state of a client.
5646
5647 2000-03-30  Thomas Helvey <tomh@inxpress.net>
5648         * m_rping.c m_rpong.c: add Gte's rping/rpong fixes
5649
5650 2000-03-30  Perry Lorier <isomer@coders.net>
5651         * ircd/parse.c: oops, missed opers.
5652
5653 2000-03-30  Perry Lorier <isomer@coders.net>
5654         * ircd/parse.c: fixed mystifying ping bug thats been plaguing us
5655         for so long.  Remember: m_ping MUST be in the parse array. :)
5656
5657 2000-03-30  Perry Lorier <isomer@coders.net>
5658         * ircd/ircd.c: test in check_pings was wrong.  I move that we
5659         disallow cvs commit after 10pm localtime....
5660
5661 2000-03-30  Perry Lorier <isomer@coders.net>
5662         * ircd/m_pong.c: Fix it for servers too.
5663
5664 2000-03-30  Perry Lorier <isomer@coders.net>
5665         * ircd/m_pong.c: Fix ping timeout bugs
5666
5667 2000-03-30  Perry Lorier <isomer@coders.net>
5668         * ircd/channel.c: Bans had CurrentTime in their when field instead
5669         of TStime()
5670
5671 2000-03-31  Thomas Helvey <tomh@ixpress.net>
5672         * ircd/numnicks.c (SetXYYCapacity): fix for extended
5673         numerics.
5674
5675 2000-03-30  Perry Lorier <isomer@coders.net>
5676         * ircd/m_nick.c: send kills both ways so when we add nick change
5677         on collision we don't desync the network.
5678
5679         * ircd/map.c: Fixup the map a bit more.
5680
5681 2000-03-31  Kevin L. Mitchell  <klmitch@mit.edu>
5682
5683         * ircd/m_clearmode.c (do_clearmode): Log the CLEARMODE to OPATH
5684
5685         * ircd/m_opmode.c: Log the mode changes to OPATH
5686
5687         * ircd/channel.c (modebuf_flush_int): Log the mode changes to
5688         OPATH
5689
5690         * include/channel.h (MODEBUF_DEST_LOG): Log the mode changes to
5691         OPATH
5692
5693         * doc/Configure.help: help text for CONFIG_LOG_OPMODE / OPATH
5694
5695         * config/config-sh.in: added OPATH for opmode log file
5696
5697         * ircd/m_clearmode.c (do_clearmode): updated uses of
5698         modebuf_mode_string() for the new usage
5699
5700         * ircd/channel.c: added flag MODE_FREE and an int argument to
5701         modebuf_mode_string() to indicate that the string must be free'd;
5702         updated calls to modebuf_mode_string() for the new usage; called
5703         collapse(pretty_mask()) on the ban string and use allocated memory
5704         for it; added ban list length accounting; fixed a number of small
5705         bugs in ban processing
5706
5707         * include/channel.h: added flag MODE_FREE and an int argument to
5708         modebuf_mode_string() to indicate that the string must be free'd
5709
5710         * ircd/m_clearmode.c (do_clearmode): made sure clearmode removed
5711         keys and limits that are set
5712
5713 2000-03-30  Perry Lorier <isomer@coders.net>
5714         * ircd/ircd.c: rewrote check_pings() for maintainability
5715         and speed.  Also changed quit msg's so they don't have
5716         redundant nick[host] info in them.
5717
5718         * ircd/send.c: Changed write errors to report what error
5719         occured (if possible).
5720
5721         * ircd/gline.c: added gline comment to the quit.
5722
5723         * ircd/m_server.c: Added suggestions to server quits mentioning
5724         what went wrong so the admin can fix it earlier instead of asking
5725         questions...
5726
5727         * ircd/map.c: Changed m_map() to hide numerics, show a * beside
5728         servers that aren't fully burst yet.  And show '(--s)' for servers
5729         where its not sure.
5730
5731         * doc/example.conf: Fixed wrapped U:
5732
5733 2000-03-30  Kevin L. Mitchell  <klmitch@mit.edu>
5734
5735         * ircd/m_mode.c (ms_mode): implemented a new m_mode in terms of
5736         mode_parse() (version selectable at compile time)
5737
5738         * ircd/m_clearmode.c (mo_clearmode): clean_channelname(parv[1])
5739
5740         * ircd/m_opmode.c (mo_opmode): clean_channelname(parv[1])
5741
5742         * config/config-sh.in: add new config option to enable new m_mode
5743         implementation
5744
5745         * doc/Configure.help: add documentation for new config option
5746         CONFIG_NEW_MODE
5747
5748         * ircd/channel.c (mode_parse_client): /opmode #foobar -o -- 461
5749         MODE -v : Not enough parameters
5750
5751         * ircd/m_clearmode.c (do_clearmode): do_clearmode() would remove
5752         +k and +l even if they weren't set...
5753
5754         * ircd/m_opmode.c: implement the OPMODE command using mode_parse()
5755
5756         * ircd/channel.c: make mode_process_clients() clear the DEOPPED
5757         flag; fix +s+p exclusivity; add MODE_ADD/MODE_DEL to flag list
5758         for; test the 0-th member, not the i-th member, of the client
5759         change state stuff
5760
5761         * ircd/m_clearmode.c (do_clearmode): use the new
5762         mode_invite_clear() function
5763
5764         * ircd/channel.c: cleared up all the compile-time warnings and
5765         errors
5766
5767         * include/channel.h: added declarations for mode_ban_invalidate()
5768         and mode_invite_clear()
5769
5770         * ircd/channel.c: finished mode_parse(), then broke it up into a
5771         dozen or so helper functions to make the code easier to read
5772
5773 2000-03-29  Thomas Helvey <tomh@inxpress.net>
5774         * ircd/ircd.c: refactor server initialization a bit, use
5775         getopt for parsing command line, refactor init_sys, main,
5776         and other bits.
5777
5778         * ircd/s_bsd.c: add functions for initialization to clean
5779         up logic a bit and remove duplicated code.
5780
5781         * include/ircd.h: add struct for server process related
5782         variables.
5783
5784 2000-03-29  Kevin L. Mitchell  <klmitch@mit.edu>
5785
5786         * ircd/channel.c: initial definition of mode_parse(); flags to
5787         prevent doing the same thing multiple times; helper method
5788         send_notoper() to send a "Not oper"/"Not on channel" notice
5789
5790         * include/channel.h: declare mode_parse() and helper flags
5791
5792         * ircd/channel.c (modebuf_flush_int): fiddled with timestamp
5793         sending to match the current action of set_mode() closely enough
5794         that hopefully there won't be major conflicts
5795
5796         * ircd/channel.c (modebuf_flush_int): consolidated the mode string
5797         building logic, reversed the order of the arguments to mode
5798         commands to have '-' preceed '+'
5799
5800 2000-03-29  Thomas Helvey <tomh@inxpress.net>
5801         * ircd/s_bsd.c (add_connection): don't disable socket options
5802         let OS tune itself and allow important performance tweaks to 
5803         work.
5804
5805 2000-03-28  Kevin L. Mitchell  <klmitch@mit.edu>
5806
5807         * ircd/channel.c (modebuf_flush_int): use %d, not %-15d; I got
5808         confused by set_mode, which is doing some really weird logic;
5809         guess what I'm going to rewrite next?  ;)
5810
5811 2000-03-28  Kevin L. Mitchell  <klmitch@emc.com>
5812
5813         * include/channel.h: added MODE_SAVE for the bounds checking stuff
5814         in modebuf_flush
5815
5816         * ircd/channel.c: make modebuf_flush into modebuf_flush_int and
5817         make it do bounds checking on the buffer; all modes are sent only
5818         if the all parameter is 1; modebuf_flush is the exported wrapper
5819
5820         * include/channel.h: add BOUNCE, renumber flags to get a little
5821         more space
5822
5823         * ircd/channel.c (modebuf_flush): don't overload HACK2, add
5824         BOUNCE; send DESYNCH message
5825
5826 2000-03-27  Kevin L. Mitchell  <klmitch@emc.com>
5827
5828         * ircd/m_clearmode.c (do_clearmode): only mark the modes the
5829         channel actually has in effect for deletion
5830
5831         * ircd/channel.c: added explanatory comments to all added
5832         functions; made flushing take place at the correct place even if
5833         the MODEBUF_DEST_DEOP flag is set; rewrote build_string() helper
5834         to bash some stupid bugs; made modebuf_flush() return if ModeBuf
5835         is empty, fixed the apparent source, removed some bogus string
5836         termination code, properly terminate the mode strings, add support
5837         for HACK2 and HACK3, made limit strings not be sent if the limit
5838         is being removed, changed where '+' and '-' come from in sent
5839         strings, added support for DEOP flag, set up bouncing code for
5840         HACK2
5841
5842         * ircd/Makefile.in: ran make depend
5843
5844         * include/channel.h: added new defines for future functionality,
5845         made modebuf_flush() return int so I can use tail recursion
5846
5847         * ircd/m_clearmode.c: add msg.h to includes; other misc cleanups
5848         to make it all compile
5849
5850         * ircd/m_opmode.c: add msg.h to includes...
5851
5852         * ircd/m_clearmode.c: implemented mo_clearchan()/ms_clearchan()
5853
5854         * ircd/channel.c (modebuf_flush): realized I forgot to
5855         nul-terminate addbuf/rembuf properly...
5856
5857         * ircd/m_clearmode.c (do_clearmode): wrote do_clearmode()...
5858
5859         * ircd/channel.c (modebuf_flush): correct sendto_server_butone to
5860         sendto_serv_butone--blah^2
5861
5862         * ircd/send.c (sendto_serv_butone): stupid comments confused me
5863
5864         * ircd/channel.c (modebuf_flush): if there are no mode changes to
5865         propagate, we're done...
5866
5867         * ircd/channel.c (modebuf_flush): duh; it's sendto_server_butone,
5868         not sendto_all_butone
5869
5870         * ircd/m_clearmode.c: define skeleton for m{o,s}_clearmode
5871
5872         * ircd/m_opmode.c: define skeleton for m{o,s}_opmode
5873
5874         * ircd/Makefile.in (SRC): added m_opmode() and m_clearmode() to
5875         the list
5876
5877         * ircd/parse.c: added messages for opmode and clearmode
5878
5879         * include/handlers.h: added declarations for mo_opmode(),
5880         ms_opmode(), mo_clearmode(), and ms_clearmode()
5881
5882         * include/msg.h: define MSG_OPMODE, TOK_OPMODE, MSG_CLEARMODE, and
5883         TOK_CLEARMODE
5884
5885         * include/channel.h (MODEBUF_DEST_OPMODE): Define the
5886         MODEBUF_DEST_OPMODE flag
5887
5888         * ircd/channel.c (modebuf_flush): added new flag,
5889         MODEBUF_DEST_OPMODE; causes channel MODE/HACK(4) notice to appear
5890         to originate from source's server (or source itself, if
5891         IsServer(source)); also causes a server-level MODE to be sent as
5892         OPMODE instead
5893
5894         * include/channel.h: defined MODEBUF_DEST_SERVER,
5895         MODEBUF_DEST_HACK4
5896
5897         * ircd/channel.c: Add another argument to build_string() to handle
5898         numeric nicks; implemented MODEBUF_DEST_SERVER to send MODEs to
5899         servers; implemented MODEBUF_DEST_HACK4 to cause HACK(4) notices
5900         to be sent out
5901
5902 2000-03-27  Perry Lorier <isomer@coders.net>
5903
5904         * ircd/s_bsd.c: fixed missing 'u' typo.
5905
5906 2000-03-26  Kevin L. Mitchell  <klmitch@emc.com>
5907
5908         * ircd/channel.c: implement modebuf_init(), _mode(), _mode_uint(),
5909         _mode_string(), _mode_client(), _flush(); also implemented a
5910         simple build_string()
5911
5912         * include/channel.h: added definition of ModeBuf, modebuf_*
5913         manipulation functions, and a couple of helper macros
5914