b1ec2e7678d7018a42b694b34ddab79b2edbb1e6
[ircu2.10.12-pk.git] / ChangeLog
1 2000-04-17  Kevin L. Mitchell  <klmitch@mit.edu>
2
3         * ircd/gline.c: detect overlapping G-lines; if an existing, wider
4         gline expires after the new one will, we drop the new one,
5         otherwise we add the G-line after that one (so the wide one will
6         apply first); if the new one contains an existing G-line and if it
7         will expire after the existing one, we drop the existing one to
8         save memory
9
10         * ircd/m_gline.c (mo_gline): opers could issue remote local
11         glines when CONFIG_OPERCMDS was off; fixed
12
13 2000-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
14
15         * ircd/m_jupe.c (mo_jupe): allow target argument to be dropped if
16         this is a local JUPE
17
18         * ircd/gline.c: add flags argument to gline_activate and
19         gline_deactivate for future expansion
20
21         * ircd/m_gline.c: pass flags to gline_activate and
22         gline_deactivate
23
24         * include/gline.h: add flags argument to gline_activate and
25         gline_deactivate
26
27         * ircd/jupe.c: add flags argument to jupe_activate and
28         jupe_deactivate for future expansion
29
30         * include/jupe.h: add flags argument to jupe_activate and
31         jupe_deactivate
32
33         * ircd/m_jupe.c: pass a flags argument to jupe_add instead of
34         local, active; pass flags to jupe_activate and jupe_deactivate
35
36         * include/gline.h: remove dead code
37
38         * ircd/gline.c: make gline expire times relative to CurrentTime,
39         since that should be monotonically increasing, instead of
40         TStime(), which can be set backwards, and which can therefore
41         cause an expire time to increase; make local glines be removed
42         instead of just deactivated; don't let gline_find() look for
43         user@host glines if the mask being looked up is a channel mask
44
45         * ircd/send.c (vsendcmdto_one): forgot to account for the case
46         where origin is a server and destination is a user
47
48         * ircd/jupe.c: make jupe expire times relative to CurrentTime,
49         since that should be monotonically increasing, instead of
50         TStime(), which can be set backwards, and which can therefore
51         cause an expire time to increase; make local jupes be removed
52         instead of just deactivated
53
54         * ircd/ircd_snprintf.c: d'oh, thanks for catching that; short for
55         limit is fine.  any other warnings I should know about?
56
57 2000-04-15  Thomas Helvey <tomh@inxpress.net>
58
59         * ircd/*.c: const correctness and type safety cleanups to
60         get code to compile with C++ compiler. Still has
61         signed/unsigned comparison warnings.
62
63 2000-04-15  Greg Sikorski <gte@atomicrevs.demon.co.uk>
64
65         * ircd/userload.c: change <sys/time.h> include to <time.h> for
66           portability.
67
68 2000-04-14  Kevin L. Mitchell  <klmitch@mit.edu>
69
70         * ircd/m_gline.c (mo_gline): d'oh, target isn't a numeric; use %C
71         and convert acptr...
72
73         * ircd/s_user.c: move gline_lookup function call into
74         register_user, where it'll have a username to lookup!
75
76         * ircd/m_gline.c: modify to utilize new sendcmdto_* series of
77         functions; also stuff send_error_to_client into return clauses
78
79         * ircd/m_jupe.c: modify to utilize new sendcmdto_* series of
80         functions; also use send_error_to_client where that makes sense
81
82         * ircd/jupe.c: modify to utilize new sendcmdto_* series of
83         functions; also use send_error_to_client where that makes sense
84
85         * ircd/gline.c: modify to utilize new sendcmdto_* series of
86         functions; also fix gline_lookup() to deal properly with remote
87         clients--boy, do struct Client and struct User need to be cleaned
88         up!
89
90         * ircd/ircd_snprintf.c (doprintf): a dest of &me is a server,
91         too...
92
93         * ircd/send.c: wrote sendcmdto_one(), vsendcmdto_one(), and
94         sendcmdto_serv_butone(), all utilizing the %v conversion of
95         ircd_snprintf()
96
97         * include/send.h: define IRC_BUFSIZE, max size of a message;
98         declare sendcmdto_one(), vsendcmdto_one(), and
99         sendcmdto_serv_butone()
100
101         * include/msg.h: define all the CMD_* constants needed to utilize
102         the new sendcmdto_* series of functions
103
104         * ircd/Makefile.in (SRC): list ircd_snprintf.c; run make depend
105
106         * ircd/gline.c: remove old, dead code.
107
108         * ircd/m_gline.c (mo_gline): disallow setting of global G-lines
109         unless CONFIG_OPERCMDS is enabled; disallow listing of all G-lines
110         (don't advertise proxies); remove dead code
111
112         * ircd/parse.c: oper handler for JUPE only lists jupes unless
113         CONFIG_OPERCMDS is enabled
114
115         * ircd/m_jupe.c (mo_jupe): don't compile mo_jupe() if
116         CONFIG_OPERCMDS is not enabled; we'll disable it in parse.c
117
118         * ircd/m_opmode.c (mo_opmode): if CONFIG_OPERCMDS is not enabled,
119         always return ERR_DISABLED
120
121         * ircd/m_clearmode.c (mo_clearmode): if CONFIG_OPERCMDS is not
122         enabled, always return ERR_DISABLED
123
124         * ircd/s_err.c: add error message to indicate disabled commands
125
126         * include/numeric.h (ERR_DISABLED): to indicate disabled commands
127
128         * doc/Configure.help: add documentation for CONFIG_OPERCMDS
129
130         * config/config-sh.in: add CONFIG_OPERCMDS, default both it and
131         CONFIG_NEW_MODE to 'y' for now
132
133         * ircd/gline.c (gline_list): fix a minor formatting bogon
134
135         * BUGS: since I fixed that bug, might as well mark it fixed.
136
137         * ircd/m_join.c: look up badchans with GLINE_EXACT
138
139         * ircd/m_gline.c: fix parc count problems; look up existing
140         G-lines with GLINE_EXACT; only set new lastmod when
141         activating/deactivating existing glines if old lastmod was not 0
142
143         * ircd/gline.c: forgot to copy the gline reason over; don't
144         propagate a gline with 0 lastmod if origin is user; add
145         GLINE_EXACT to force exact matching of gline mask
146
147         * ircd/ircd_snprintf.c (doprintf): forgot to deal with the zero
148         flag properly
149
150         * ircd/s_conf.c (find_kill): gline_find() takes a char *userhost,
151         but gline_lookup() actually takes a client--d'oh.
152
153 2000-04-13  Thomas Helvey <tomh@inxpress.net>
154         * ircd/IPcheck.c: Back port BLMet's bugfix from 2.10.10
155
156 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
157
158         * ircd/whocmds.c: Don't make idle flag default in /who, to prevent:
159           "/who * x"
160           "Gte3 H*iwg Gte@212.49.240.217 :1 :0 I am the one that was."
161           (Found by Plexus).
162
163         * ircd/whocmds.c: Change idle time calc from socket idle to user
164           idle.
165
166 2000-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
167
168         * config/aclocal.m4 (unet_CHECK_TYPE_SIZES): check size of void *,
169         too, for ircd_snprintf.c
170
171         * include/ircd_snprintf.h: documentation for ircd_(v)snprintf, in
172         comments; mostly descended from the Linux manpage for printf, but
173         also documenting the extensions.
174
175         * ircd/ircd_snprintf.c: NULL dest is equivalent to going to a
176         client; make 'q' be the same as 'L'; remove __inline__; only
177         define EXTENSION if HAVE_LONG_LONG is defined
178
179         * include/handlers.h: declare m_gline()
180
181         * ircd/parse.c: gline can be called by users, but it only lists
182         the glines.
183
184         * ircd/s_user.c (set_nick_name): resend gline if a remote server
185         introduces a glined client
186
187         * ircd/s_serv.c (server_estab): burst glines, too
188
189         * ircd/gline.c: fix up all the expire times to be offsets;
190         simplify gline_resend()
191
192         * ircd/m_gline.c: begin coding replacements for ms_gline(),
193         mo_gline(), and m_gline()
194
195         * ircd/gline.c (gline_add): allow *@#channel to work correctly;
196         also, prohibit local BADCHANs if LOCAL_BADCHAN not defined
197
198 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
199
200         * tools/Bouncer/*: Add comments/documentation/tags.
201         * tools/Bouncer/*: Add debug defines, make task fork().
202
203 2000-04-12  Thomas Helvey <tomh@inxpress.net>
204         * ircd/s_err.c: Cleanup s_err.c make one table so we
205         don't have to do anything tricky to get an error string.
206
207 2000-04-12  Greg Sikorski <gte@atomicrevs.demon.co.uk>
208         * Add port bouncer for http (x/w)
209
210 2000-04-12  Kevin L. Mitchell  <klmitch@mit.edu>
211
212         * ircd/s_conf.c (find_kill): replaced call to find_gline() with a
213         call to gline_find(); also used GlineReason() instead of direct
214         reference to structure member
215
216         * ircd/m_join.c (m_join): replace bad_channel() calls with calls
217         to gline_find(name, GLINE_BADCHAN), and also check to see if gline
218         is active
219
220         * ircd/channel.c: nothing seems to be called anywhere...
221
222         * ircd/s_err.c: update a couple of replies to dovetail with new
223         semantics
224
225         * ircd/gline.c: begin complete re-implementation of gline.c along
226         the lines of the final design of jupe.c
227
228         * include/gline.h: begin complete re-implementation of gline.c
229         along the lines of the final design of jupe.c
230
231         * ircd/channel.c (mode_process_clients): fix "Deop of +k user on
232         %s by %s" message...
233
234         * ircd/ircd_snprintf.c: my new snprintf()-like functions
235
236         * include/ircd_snprintf.h: my new snprintf()-like functions
237
238 2000-04-11  Thomas Helvey <tomh@inxpress.net>
239         * ircd/IPcheck.c: removed old dead code
240         * ircd/s_user.c (send_user_info): removed non-standard
241           user not found message for userhost/userip
242
243 2000-04-11  Greg Sikorski <gte@atomicrevs.demon.co.uk>
244
245         * ircd/s_err.c: Added missing quotes to ERR_DONTCHEAT numeric.
246         * doc/p10.html: Work on chapter 4.
247
248 2000-04-10  Kevin L. Mitchell  <klmitch@mit.edu>
249
250         * ircd/channel.c (mode_parse_client): fix coredump on /mode
251         #foobar +o nosuchnick
252
253 2000-04-10  Perry Lorier  <Isomer@coders.net>
254         * BUGS: Added bug.
255
256 2000-04-09  Thomas Helvey <tomh@inxpress.net>
257         * include/IPcheck.h: fix prototype
258         * ircd/s_user.c: fix usage of IPcheck_remote_connect
259         * ircd/IPcheck.c: removed unused args
260
261 2000-04-09  Thomas Helvey <tomh@inxpress.net>
262         * include/IPcheck.h: add proto for IPcheck_expire
263
264         * ircd/IPcheck.c: Rewrote
265
266         * ircd/ircd.c: Add IPcheck_expire to main message loop
267
268         * ircd/s_user.c: Redo target hashing, refactor target code
269
270         * include/numeric.h: Cleaned up numerics, added which ones are
271         in use by other networks and what they are in use for.
272
273         * ircd/channel.c: cleaned can_join(), allow anyone through anything
274         if /invited, simplified the function.  Opers overusing OPEROVERRIDE
275         will get a message explaining to them not to cheat.
276
277         * ircd/m_join.c: cleaned up the various join functions, should be
278         a lot more efficient.  Still needs work.  Now assumes that s<->s
279         won't send it a JOIN 0.  Service coders - note this and tread with
280         care.
281
282         * ircd/m_stats.c: added Gte-'s stats doc patch.
283
284         * ircd/m_version.c: /version now returns the 005 numeric as well.
285         as requested by Liandrin.
286
287
288 2000-04-07  Kevin L. Mitchell  <klmitch@mit.edu>
289
290         * ircd/m_clearmode.c: add include for support.h for write_log()
291
292         * configure: move ircd/crypt/* to tools/*
293
294 2000-04-06  Thomas Helvey <tomh@inxpress.net>
295         * ircd/s_auth.c: Shorten auth connect timeout to 60 seconds
296           set client host to server alias if connection from localhost
297
298 2000-04-06  Perry Lorier <isomer@coders.net>
299         * ircd/ircd.c: Fix core during pinging (oops)
300         
301 2000-04-06  Perry Lorier <isomer@coders.net>
302         * ircd/send.c: fixed wrong ident being sent to channels bug.
303         * include/numerics.h: Updated some of the numerics from other
304         networks.  Flagged some as 'unused' by undernet.
305
306 2000-03-30  Perry Lorier <isomer@coders.net>
307         * ircd/ircd.c: Lets see if this helps the ping problem at all.
308         * ircd/whocmds.c, /doc/readme.who: Added %l specifier to get idle
309         time for local clients. (as requested), extended who now returns all
310         the flags (@+!) so you can tell the complete state of a client.
311
312 2000-03-30  Thomas Helvey <tomh@inxpress.net>
313         * m_rping.c m_rpong.c: add Gte's rping/rpong fixes
314
315 2000-03-30  Perry Lorier <isomer@coders.net>
316         * ircd/parse.c: oops, missed opers.
317
318 2000-03-30  Perry Lorier <isomer@coders.net>
319         * ircd/parse.c: fixed mystifying ping bug thats been plaguing us
320         for so long.  Remember: m_ping MUST be in the parse array. :)
321
322 2000-03-30  Perry Lorier <isomer@coders.net>
323         * ircd/ircd.c: test in check_pings was wrong.  I move that we
324         disallow cvs commit after 10pm localtime....
325
326 2000-03-30  Perry Lorier <isomer@coders.net>
327         * ircd/m_pong.c: Fix it for servers too.
328
329 2000-03-30  Perry Lorier <isomer@coders.net>
330         * ircd/m_pong.c: Fix ping timeout bugs
331
332 2000-03-30  Perry Lorier <isomer@coders.net>
333         * ircd/channel.c: Bans had CurrentTime in their when field instead
334         of TStime()
335
336 2000-03-31  Thomas Helvey <tomh@ixpress.net>
337         * ircd/numnicks.c (SetXYYCapacity): fix for extended
338         numerics.
339
340 2000-03-30  Perry Lorier <isomer@coders.net>
341         * ircd/m_nick.c: send kills both ways so when we add nick change
342         on collision we don't desync the network.
343
344         * ircd/map.c: Fixup the map a bit more.
345
346 2000-03-31  Kevin L. Mitchell  <klmitch@mit.edu>
347
348         * ircd/m_clearmode.c (do_clearmode): Log the CLEARMODE to OPATH
349
350         * ircd/m_opmode.c: Log the mode changes to OPATH
351
352         * ircd/channel.c (modebuf_flush_int): Log the mode changes to
353         OPATH
354
355         * include/channel.h (MODEBUF_DEST_LOG): Log the mode changes to
356         OPATH
357
358         * doc/Configure.help: help text for CONFIG_LOG_OPMODE / OPATH
359
360         * config/config-sh.in: added OPATH for opmode log file
361
362         * ircd/m_clearmode.c (do_clearmode): updated uses of
363         modebuf_mode_string() for the new usage
364
365         * ircd/channel.c: added flag MODE_FREE and an int argument to
366         modebuf_mode_string() to indicate that the string must be free'd;
367         updated calls to modebuf_mode_string() for the new usage; called
368         collapse(pretty_mask()) on the ban string and use allocated memory
369         for it; added ban list length accounting; fixed a number of small
370         bugs in ban processing
371
372         * include/channel.h: added flag MODE_FREE and an int argument to
373         modebuf_mode_string() to indicate that the string must be free'd
374
375         * ircd/m_clearmode.c (do_clearmode): made sure clearmode removed
376         keys and limits that are set
377
378 2000-03-30  Perry Lorier <isomer@coders.net>
379         * ircd/ircd.c: rewrote check_pings() for maintainability
380         and speed.  Also changed quit msg's so they don't have
381         redundant nick[host] info in them.
382
383         * ircd/send.c: Changed write errors to report what error
384         occured (if possible).
385
386         * ircd/gline.c: added gline comment to the quit.
387
388         * ircd/m_server.c: Added suggestions to server quits mentioning
389         what went wrong so the admin can fix it earlier instead of asking
390         questions...
391
392         * ircd/map.c: Changed m_map() to hide numerics, show a * beside
393         servers that aren't fully burst yet.  And show '(--s)' for servers
394         where its not sure.
395
396         * doc/example.conf: Fixed wrapped U:
397
398 2000-03-30  Kevin L. Mitchell  <klmitch@mit.edu>
399
400         * ircd/m_mode.c (ms_mode): implemented a new m_mode in terms of
401         mode_parse() (version selectable at compile time)
402
403         * ircd/m_clearmode.c (mo_clearmode): clean_channelname(parv[1])
404
405         * ircd/m_opmode.c (mo_opmode): clean_channelname(parv[1])
406
407         * config/config-sh.in: add new config option to enable new m_mode
408         implementation
409
410         * doc/Configure.help: add documentation for new config option
411         CONFIG_NEW_MODE
412
413         * ircd/channel.c (mode_parse_client): /opmode #foobar -o -- 461
414         MODE -v : Not enough parameters
415
416         * ircd/m_clearmode.c (do_clearmode): do_clearmode() would remove
417         +k and +l even if they weren't set...
418
419         * ircd/m_opmode.c: implement the OPMODE command using mode_parse()
420
421         * ircd/channel.c: make mode_process_clients() clear the DEOPPED
422         flag; fix +s+p exclusivity; add MODE_ADD/MODE_DEL to flag list
423         for; test the 0-th member, not the i-th member, of the client
424         change state stuff
425
426         * ircd/m_clearmode.c (do_clearmode): use the new
427         mode_invite_clear() function
428
429         * ircd/channel.c: cleared up all the compile-time warnings and
430         errors
431
432         * include/channel.h: added declarations for mode_ban_invalidate()
433         and mode_invite_clear()
434
435         * ircd/channel.c: finished mode_parse(), then broke it up into a
436         dozen or so helper functions to make the code easier to read
437
438 2000-03-29  Thomas Helvey <tomh@inxpress.net>
439         * ircd/ircd.c: refactor server initialization a bit, use
440         getopt for parsing command line, refactor init_sys, main,
441         and other bits.
442
443         * ircd/s_bsd.c: add functions for initialization to clean
444         up logic a bit and remove duplicated code.
445
446         * include/ircd.h: add struct for server process related
447         variables.
448
449 2000-03-29  Kevin L. Mitchell  <klmitch@mit.edu>
450
451         * ircd/channel.c: initial definition of mode_parse(); flags to
452         prevent doing the same thing multiple times; helper method
453         send_notoper() to send a "Not oper"/"Not on channel" notice
454
455         * include/channel.h: declare mode_parse() and helper flags
456
457         * ircd/channel.c (modebuf_flush_int): fiddled with timestamp
458         sending to match the current action of set_mode() closely enough
459         that hopefully there won't be major conflicts
460
461         * ircd/channel.c (modebuf_flush_int): consolidated the mode string
462         building logic, reversed the order of the arguments to mode
463         commands to have '-' preceed '+'
464
465 2000-03-29  Thomas Helvey <tomh@inxpress.net>
466         * ircd/s_bsd.c (add_connection): don't disable socket options
467         let OS tune itself and allow important performance tweaks to 
468         work.
469
470 2000-03-28  Kevin L. Mitchell  <klmitch@mit.edu>
471
472         * ircd/channel.c (modebuf_flush_int): use %d, not %-15d; I got
473         confused by set_mode, which is doing some really weird logic;
474         guess what I'm going to rewrite next?  ;)
475
476 2000-03-28  Kevin L. Mitchell  <klmitch@emc.com>
477
478         * include/channel.h: added MODE_SAVE for the bounds checking stuff
479         in modebuf_flush
480
481         * ircd/channel.c: make modebuf_flush into modebuf_flush_int and
482         make it do bounds checking on the buffer; all modes are sent only
483         if the all parameter is 1; modebuf_flush is the exported wrapper
484
485         * include/channel.h: add BOUNCE, renumber flags to get a little
486         more space
487
488         * ircd/channel.c (modebuf_flush): don't overload HACK2, add
489         BOUNCE; send DESYNCH message
490
491 2000-03-27  Kevin L. Mitchell  <klmitch@emc.com>
492
493         * ircd/m_clearmode.c (do_clearmode): only mark the modes the
494         channel actually has in effect for deletion
495
496         * ircd/channel.c: added explanatory comments to all added
497         functions; made flushing take place at the correct place even if
498         the MODEBUF_DEST_DEOP flag is set; rewrote build_string() helper
499         to bash some stupid bugs; made modebuf_flush() return if ModeBuf
500         is empty, fixed the apparent source, removed some bogus string
501         termination code, properly terminate the mode strings, add support
502         for HACK2 and HACK3, made limit strings not be sent if the limit
503         is being removed, changed where '+' and '-' come from in sent
504         strings, added support for DEOP flag, set up bouncing code for
505         HACK2
506
507         * ircd/Makefile.in: ran make depend
508
509         * include/channel.h: added new defines for future functionality,
510         made modebuf_flush() return int so I can use tail recursion
511
512         * ircd/m_clearmode.c: add msg.h to includes; other misc cleanups
513         to make it all compile
514
515         * ircd/m_opmode.c: add msg.h to includes...
516
517         * ircd/m_clearmode.c: implemented mo_clearchan()/ms_clearchan()
518
519         * ircd/channel.c (modebuf_flush): realized I forgot to
520         nul-terminate addbuf/rembuf properly...
521
522         * ircd/m_clearmode.c (do_clearmode): wrote do_clearmode()...
523
524         * ircd/channel.c (modebuf_flush): correct sendto_server_butone to
525         sendto_serv_butone--blah^2
526
527         * ircd/send.c (sendto_serv_butone): stupid comments confused me
528
529         * ircd/channel.c (modebuf_flush): if there are no mode changes to
530         propagate, we're done...
531
532         * ircd/channel.c (modebuf_flush): duh; it's sendto_server_butone,
533         not sendto_all_butone
534
535         * ircd/m_clearmode.c: define skeleton for m{o,s}_clearmode
536
537         * ircd/m_opmode.c: define skeleton for m{o,s}_opmode
538
539         * ircd/Makefile.in (SRC): added m_opmode() and m_clearmode() to
540         the list
541
542         * ircd/parse.c: added messages for opmode and clearmode
543
544         * include/handlers.h: added declarations for mo_opmode(),
545         ms_opmode(), mo_clearmode(), and ms_clearmode()
546
547         * include/msg.h: define MSG_OPMODE, TOK_OPMODE, MSG_CLEARMODE, and
548         TOK_CLEARMODE
549
550         * include/channel.h (MODEBUF_DEST_OPMODE): Define the
551         MODEBUF_DEST_OPMODE flag
552
553         * ircd/channel.c (modebuf_flush): added new flag,
554         MODEBUF_DEST_OPMODE; causes channel MODE/HACK(4) notice to appear
555         to originate from source's server (or source itself, if
556         IsServer(source)); also causes a server-level MODE to be sent as
557         OPMODE instead
558
559         * include/channel.h: defined MODEBUF_DEST_SERVER,
560         MODEBUF_DEST_HACK4
561
562         * ircd/channel.c: Add another argument to build_string() to handle
563         numeric nicks; implemented MODEBUF_DEST_SERVER to send MODEs to
564         servers; implemented MODEBUF_DEST_HACK4 to cause HACK(4) notices
565         to be sent out
566
567 2000-03-27  Perry Lorier <isomer@coders.net>
568
569         * ircd/s_bsd.c: fixed missing 'u' typo.
570
571 2000-03-26  Kevin L. Mitchell  <klmitch@emc.com>
572
573         * ircd/channel.c: implement modebuf_init(), _mode(), _mode_uint(),
574         _mode_string(), _mode_client(), _flush(); also implemented a
575         simple build_string()
576
577         * include/channel.h: added definition of ModeBuf, modebuf_*
578         manipulation functions, and a couple of helper macros
579
580 2000-03-24 Thomas Helvey <tomh@inxpress.net>
581   * numicks.c: convert extended numerics to use original mask version
582   * numnicks.h: ""
583   * s_user.c:
584 2000-03-23 Thomas Helvey <tomh@inxpress.net>
585   * Merge in changes from production
586 2000-03-22 Thomas Helvey <tomh@inxpress.net>
587   * numicks.c: Tweak to numnick generator to reduce possibility of duplicates.
588   * rfc1459.unet: Add Maniac's documentation for /names 0
589 * Fix misc. jupe bugs that somehow made it into the tree
590 * Escape /names 0 to mean /names --Maniac
591 * Don't core when server asks for info --Maniac 
592 * Add Kev's jupe patch --Bleep
593 * Add Maniacs squit patch --Bleep
594 * Merge in u2_10_10_beta07 changes --Bleep
595 * Merge in u2_10_10_beta06 changes --Bleep
596 * Start ircu2.10.11 development, beta branch u2_10_10 --Bleep
597 #-----------------------------------------------------------------------------
598 #
599 # ChangeLog for ircu2.10.11
600 #
601 # $Id: ChangeLog,v 1.93 2000-04-17 17:07:01 kev Exp $
602 #
603 # Insert new changes at beginning of the change list.
604 #