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