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