Author: Bleep <helveytw@home.com>
[ircu2.10.12-pk.git] / ChangeLog
1 2000-09-15  Thomas Helvey <helveytw@home.com>
2         * ircd/s_conf.c: start adding code for new conf data structs, changed
3         listeners, admin line, motd lines, class lines. Move validate_hostent
4         to resolver. General mayhem.
5         * include/s_conf.h: new data structs and accessors
6         * ircd/res.c: move validate_hostent here, rewrite, use regular
7         expression for validation.
8         * doc/example.conf: update docs for port
9
10 2000-09-14  Thomas Helvey <helveytw@home.com>
11         * ircd/s_conf.c (conf_init): rewrite conf file parser, start to break
12         up conf_init into managable chunks.
13         * ircd/listener.c (set_listener_mask): fix logic bug core dump.
14         * include/s_conf.h: add new data struct for local info (unwinding the mess).
15
16 2000-09-13  Thomas Helvey <helveytw@home.com>
17         * ircd/list.c: put Clients in free lists, pre-allocate MAXCONNECTIONS
18         local clients.
19         * ircd/list.c: put SLinks in free lists
20         * ircd/channel.c: put Memberships in free lists
21         * ircd/ircd.c: rearrange initializations a bit in main
22         Note: With these changes, ircd NEVER frees Clients, SLinks or
23         Memberships. It will also rarely need to allocate new
24         ones during net bursts and other disruptions. This should
25         cut down on memory fragmentation a bit as well.
26
27 2000-08-30  Kevin L. Mitchell  <klmitch@mit.edu>
28
29         * ircd/m_names.c (do_names): pull-up from do_names fix in
30         u2.10.10.pl11
31
32 2000-07-15  Perry Lorier       <Isomer@coders.net>
33         * various: IP only k:'s and G:'s now do bit tests instead of two(!) 
34                  match()'s.  Major Major cpu savings.  Also speed up the
35                  other case slightly.  As a side effect you can now
36                  k/Gline *@10.0.0.0/8.  I'll do bans tomorrow, it's nearing
37                  3am.
38
39 2000-07-15  Perry Lorier       <Isomer@coders.net>
40         * various: Fixed warnings after compiling on an alpha.
41 2000-07-09  Perry Lorier       <Isomer@coders.net>
42         * doc/ircd.8: Applied grammitical changes by Liandrin, applied
43                       changes suggested by various other people.
44         * ircd/IPcheck.c: More bug fixes.  Current problem appears to be
45                         that it gets a corrupt entry somehow.
46 2000-07-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
47         * ircd/m_oper.c: Clean up compiler warning.
48
49 2000-07-08  Perry Lorier       <Isomer@coders.net>
50         * doc/ircd.8: Updated the documentation, it was slightly out of date
51                       being updated around 1989.
52         * ircd/m_whois.c: Rewrote for clarity, and probably a bit more speed.
53                           fixed a few minor glitches.
54         * doc/rfc1459.unet: Updated.
55         * ircd/IPcheck.c: Fixed more bugs.
56         * ircd/s_bsd.c: We now keep track of servers we've conected.
57
58 2000-07-02  Perry Lorier       <Isomer@coders.net>
59         * ircd/s_misc.c: Fixed remote IPcheck bug.  Ok, I'm a moron, so sue
60                         me.  Thanks to Hektik, thanks thanks thanks thanks
61                         thanks thanks thanks thanks thank thanks thank thanks
62
63 2000-07-01  Perry Lorier       <Isomer@coders.net>
64         * ircd/s_conf.c: "Fixed" the "bug" where people would "evade" K:'s.
65         * ircd/s_conf.c, include/IPcheck.h: Fixed compile warnings.
66
67 2000-06-22  Perry Lorier       <Isomer@coders.net>
68         * ircd/IPcheck.c: Large chunks redone.
69         * ircd/s_conf.c: Changes due to IPcheck - ONE nolonger supported,
70                         single AND double digit limits are allowed now.
71         * misc other: Changes to IPcheck.
72
73 2000-06-30  Perry Lorier       <Isomer@coders.net>
74         * ircd/ircd.c: Fix command line parameter bugs.
75
76 2000-06-30  Perry Lorier       <Isomer@coders.net>
77         * ircd/m_kill.c: Fixed bug with LOCAL_KILL_ONLY
78         * ircd/m_nick.c: Tidied things up.
79
80 2000-06-12 Joseph Bongaarts <foxxe@trms.com>
81         * ircd/m_stats.c: Iso forgot mo_stats when he added /stats v
82         
83 2000-05-29  Perry Lorier       <Isomer@coders.net>
84         * ircd/m_stats.c: add /stats v to do only the last part of the /trace
85         * ircd/IPcheck.c: Cosmetic change, if we meddle with it enough do
86                         you think it'll get bored and fix itself?
87
88 2000-06-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
89
90         * ircd/m_names.c: Clean up compiler warnings.
91
92 2000-06-09  Kevin L. Mitchell  <klmitch@mit.edu>
93
94         * ircd/channel.c (mode_parse_client): don't send warning if
95         there's not enough arguments for a +/-o/v; means the habit of
96         doing "/mode #channel +oooooo bob" doesn't result in a bunch of
97         error messages
98
99 2000-06-04  Greg Sikorski <gte@atomicrevs.demon.co.uk>
100
101         * ircd/m_names.c: Re-factor code to remove unneccessary
102         GlobalChannelList iteration every time someone joins a channel.
103
104 2000-06-02  Kevin L. Mitchell  <klmitch@mit.edu>
105
106         * ircd/s_user.c: add struct Gline * argument to register_user;
107         look up global glines and repropagate them if necessary; send
108         acknowledgement of gline to remote servers when registering users
109
110         * ircd/s_serv.c (server_estab): don't send acknowledgement of
111         local glines to remote servers; do send gline acknowledgement of
112         bursted users
113
114         * ircd/m_user.c (m_user): pass new struct Gline * argument to
115         register_user
116
117         * ircd/m_pong.c: pass new struct Gline * argument to register_user
118
119         * ircd/m_nick.c (ms_nick): document protocol change
120
121         * ircd/gline.c: support GLINE_LASTMOD
122
123         * include/s_user.h: add struct Gline * argument to register_user
124
125         * include/gline.h: add GLINE_LASTMOD to look up non-zero lastmods
126
127         * ircd/s_conf.c (find_kill): add unsigned int argument to
128         gline_lookup()
129
130         * ircd/gline.c: add GLINE_GLOBAL to lookup or find only global
131         glines; add unsigned int argument to gline_lookup()
132
133         * include/gline.h: add GLINE_GLOBAL flag; add unsigned int
134         argument to gline_lookup()
135
136         * ircd/m_server.c: Resend jupe only when there is no %<lastmod>
137         parameter, or when it falls out of bounds: see comments prior to
138         call to jupe_resend(); call server_estab with struct Jupe
139         parameter, so that we place the appropriate %<lastmod> in the
140         appropriate place.
141
142         * ircd/s_serv.c (server_estab): send %<lastmod> for introduced
143         server, as well as for servers when we're sending the BURST
144
145         * include/s_serv.h: add a struct Jupe * to the arguments for
146         server_estab() so that we can send the appropriate lastmod
147         parameter
148
149         * ircd/m_gline.c (ms_gline): actually, this should be the
150         slightest bit more efficient...
151
152         * ircd/m_jupe.c (ms_jupe): actually, this should be the slightest
153         bit more efficient...
154
155         * ircd/m_gline.c (ms_gline): inhibit GLINE processing resends
156         during netburst
157
158         * ircd/m_jupe.c (ms_jupe): inhibit JUPE processing resends during
159         netburst
160
161         * ircd/channel.c (joinbuf_join): really remove user from local
162         channels
163
164 2000-05-29  Perry Lorier       <Isomer@coders.net>
165         * ircd/m_names.c: Removed redundant space. 
166         * ircd/s_bsd.c: Fixed incorrect syntax on ERROR line.
167
168 2000-05-18  Kevin L. Mitchell  <klmitch@mit.edu>
169
170         * ircd/m_burst.c (ms_burst): er...that should have been a ",", not
171         a " "
172
173 2000-05-04  Kevin L. Mitchell  <klmitch@mit.edu>
174
175         * ircd/channel.c: replace bogus assertions with returns, which is
176         logically correct; only wipe out limit/key if they were originally
177         set in the first place; remove user from channel when doing a
178         PARTALL; only send MODE +o for user CREATEing channel if user is
179         not MyUser--CREATE will only be used if the channel did not
180         originally exist, therefore we can assume no one local is on the
181         channel anyway, and we don't exactly need for the user to see an
182         explicit +o for themselves
183
184         * doc/readme.gline: describe the syntax of the GLINE command
185
186         * doc/readme.jupe: update to reflect a couple of changes to JUPE
187
188         * ircd/gline.c: don't propagate local changes
189
190         * ircd/jupe.c: don't propagate local changes
191
192         * ircd/m_gline.c (mo_gline): force local flag when deactivating
193         glines with 0 lastmod
194
195         * ircd/gline.c (gline_deactivate): G-lines with zero lastmod time
196         are now removed instead of being deactivated
197
198         * ircd/m_gline.c (ms_gline): make G-lines of the form "GLINE *
199         -<mask>" be accepted
200
201         * ircd/channel.c (send_channel_modes): deal with one of the last
202         vestiges of sendbuf
203
204         * ircd/m_burst.c (ms_burst): debugged ban processing; removed
205         debugging hooks
206
207         * ircd/channel.c (modebuf_extract): remove debugging
208         sendto_opmask_butone calls
209
210 2000-05-03  Kevin L. Mitchell  <klmitch@mit.edu>
211
212         * ircd/channel.c: support a couple of new flags to support using
213         mode_parse; fix some bugs with 0 struct ModeBuf *; implementation
214         of modebuf_extract to extract added flags for use by ms_burst
215
216         * include/channel.h: a couple of new flags to support using
217         mode_parse inside ms_burst
218
219         * ircd/m_burst.c (ms_burst): brand new implementation of BURST
220
221         * ircd/m_endburst.c: add loop to processing of end_of_burst to
222         free empty channels after the BURST is over.
223
224         * ircd/m_server.c: convert to use new send.c functions--I wanted
225         to rewrite it from scratch, but the logic's pretty complex; I may
226         still rewrite it, though...
227
228 2000-05-02  Thomas Helvey <tomh@inxpress.net>
229
230         * ircd/ircd.c: fix broken header include ordering
231
232 2000-05-02  Thomas Helvey <tomh@inxpress.net>
233         
234         * ircd/IPcheck.c: cleanups for ZenShadow's cleanups
235         review emailed privately
236
237         * include/IPcheck.h: removed unneeded include
238
239 2000-05-02  Kevin L. Mitchell  <klmitch@mit.edu>
240
241         * ircd/s_user.c (hunt_server): throw in a comment so I know what
242         the sendto_one is for
243
244         * include/querycmds.h (Count_unknownbecomesclient): convert to
245         sendto_opmask_butone
246
247         * ircd/send.c: start removing dead code
248
249         * include/send.h: start removing dead code
250
251         * ircd/m_rping.c: convert to sendcmdto_one / send_reply /
252         hunt_server_cmd
253
254         * ircd/m_rpong.c: convert to sendcmdto_one / send_reply
255
256 2000-05-01  Kevin L. Mitchell  <klmitch@mit.edu>
257
258         * ircd/m_stats.c: convert to sendcmdto_one / send_reply
259
260         * ircd/m_kick.c: Completely reimplement m_kick
261
262         * ircd/channel.c: send_user_joins removed; it was dead code,
263         anyway...
264
265 2000-05-01  Perry Lorier <isomer@coders.net>
266         * ircd/m_invite.c: Fix for the rest of m_invite.c, and again.
267         * ircd/channels.c: My fix for the part problem.  Untested, probably
268                 won't work.  Can't be much worse than the current problem.
269                 it'll either work or core, take your pick.
270
271
272 2000-04-30  Perry Lorier <isomer@coders.net>
273         * config/config-sh.in: Fix for CONNEXIT
274         * ircd/s_{user,misc}.c: Fix for CONNEXIT
275         * ircd/m_invite.c: Fix for incorrectly numnickified invite.
276                         (Kev: Want to come talk to me about this?)
277
278 2000-04-30  Steven M. Doyle <steven@doyle.net>
279         * ircd/ircd.c
280           - general cleanups and readability enhancements
281           - rewrite of setuid/chroot code.
282           - server will no longer run as root
283           - -DPROFIL compile option removed
284           - Fixed IPcheck API calls
285  
286         * config/config-sh.in
287           - Fixed up chroot compile options
288           - Added options for debug and profile compiles
289  
290         * config/gen.ircd.Makefile
291           - Support for new debug/profile options
292  
293         * ircd/Makefile.in
294           - Support for new debug/profile options
295  
296         * ircd/ircd_signal.c
297           - Removed -DPROFIL
298
299         * include/IPcheck.h
300           - Removed old API prototypes, added new ones
301         
302         * ircd/IPcheck.c
303           - Readability cleanups (well, I -think-...)
304           - Changed IPRegistryEntry.last_connect to a time_t.  The previously
305             used unsigned short was probably causing interesting things after
306             a client had been connected longer than about 65,535 seconds...
307           - Removed old API functions.
308
309         * ircd/whocmds.c
310           - Removed IPcheck.h include
311         
312         * Additionally modified IPcheck API calls in:
313           - ircd/m_nick.c
314           - ircd/m_auth.c
315           - ircd/s_bsd.c
316           - ircd/s_conf.c
317           - ircd/s_misc.c
318           - ircd/s_serv.c
319           - ircd/s_user.c
320         
321         
322 2000-04-30  Perry Lorier <isomer@coders.net>
323         * ircd/s_bsd.c: Sigh. :)
324         * ircd/m_mode.c: fix for modeless channels by poptix.
325
326 2000-04-29  Kevin L. Mitchell  <klmitch@mit.edu>
327
328         * ircd/m_join.c: reimplement JOIN in terms of struct JoinBuf
329
330         * ircd/channel.c (clean_channelname): make clean_channelname also
331         truncate long channel names
332
333 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
334
335         * ircd/m_create.c: reimplement CREATE in terms of struct JoinBuf
336
337         * ircd/channel.c: implemented joinbuf_init, joinbuf_join,
338         joinbuf_flush
339
340         * include/channel.h: definitions and declarations for the struct
341         JoinBuf abstraction
342
343 2000-04-29  Perry Lorier <isomer@coders.net>
344         * ircd/s_bsd.c: Ok, so I thought I compiled and tested this...
345
346 2000-04-29  Perry Lorier <isomer@coders.net>
347         * ircd/s_bsd.c: Add debugging code to IPcheck
348
349 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
350
351         * include/ircd_reply.h (SND_EXPLICIT): use instead of RPL_EXPLICIT
352
353         * ircd/ircd_reply.c (send_reply): use SND_EXPLICIT instead of
354         RPL_EXPLICIT
355
356         * ircd/m_userhost.c (m_userhost): add a dead code comment
357
358         * ircd/m_desynch.c: forgot one...
359
360         * ircd/m_rehash.c (mo_rehash): er, duplicates :)
361
362         * ircd/m_proto.c (proto_send_supported): just change a comment so
363         it doesn't show up in my scans
364
365         * ircd/ircd_reply.c (send_reply): fix a slight bug...
366
367         * ircd/s_numeric.c (do_numeric): use new sendcmdto_* functions,
368         kinda hackish...
369
370         * ircd/parse.c (parse_server): argument wrangling to make
371         processing in do_numeric a little easier to deal with
372
373         * ircd/s_serv.c (server_estab): SERVER should come from
374         acptr->serv->up, not &me
375
376         * ircd/m_lusers.c: accidentally left out sptr for a %C
377
378         * ircd/send.c: hack to support doing wallchops...
379
380         * ircd/m_whowas.c: convert to new send functions
381
382         * ircd/m_whois.c: convert to new send functions
383
384         * ircd/m_who.c: convert to new send functions
385
386         * ircd/m_wallops.c: convert to new send functions
387
388         * ircd/m_wallchops.c: convert to new send functions
389
390         * ircd/m_version.c: convert to new send functions
391
392         * ircd/m_userip.c: convert to new send functions
393
394         * ircd/m_userhost.c: convert to new send functions
395
396         * ircd/m_uping.c: convert to new send functions
397
398         * ircd/m_trace.c: convert to new send functions
399
400         * ircd/m_topic.c: convert to new send functions
401
402         * ircd/m_time.c: convert to new send functions
403
404         * ircd/m_squit.c: convert to new send functions
405
406         * ircd/m_silence.c: convert to new send functions
407
408         * ircd/m_settime.c: convert to new send functions
409
410         * ircd/m_restart.c: convert to new send functions
411
412         * ircd/m_rehash.c: convert to new send functions
413
414         * ircd/m_privmsg.c: convert to new send functions
415
416         * ircd/m_pong.c: convert to new send functions
417
418         * ircd/m_ping.c: convert to new send functions
419
420         * ircd/m_pass.c: convert to new send functions
421
422         * ircd/m_opmode.c: convert to new send functions
423
424         * ircd/m_oper.c: convert to new send functions
425
426         * ircd/m_notice.c: convert to new send functions
427
428         * ircd/m_nick.c: convert to new send functions
429
430         * ircd/m_names.c: convert to new send functions
431
432         * ircd/m_motd.c: convert to new send functions
433
434         * ircd/m_mode.c: convert to new send functions
435
436         * ircd/m_map.c: convert to new send functions
437
438         * ircd/m_lusers.c: convert to new send functions
439
440         * ircd/m_list.c: convert to new send functions
441
442         * ircd/m_links.c: convert to new send functions
443
444         * ircd/m_kill.c: convert to new send functions
445
446         * ircd/m_jupe.c: convert to new send functions
447
448         * ircd/m_invite.c: convert to new send functions
449
450         * ircd/m_info.c: convert to new send functions
451
452         * ircd/m_help.c: convert to new send functions
453
454         * ircd/m_gline.c: convert to new send functions
455
456         * ircd/m_error.c: convert to new send functions
457
458         * ircd/m_endburst.c: convert to new send functions
459
460         * ircd/m_die.c: convert to new send functions
461
462         * ircd/m_destruct.c: convert to new send functions
463
464         * ircd/m_defaults.c: convert to new send functions
465
466         * ircd/m_connect.c: convert to new send functions
467
468 2000-04-28  Perry Lorier <isomer@coders.net>
469         * RELEASE.NOTES: Describe a few more undocumented features.
470         * config/config-sh.in: change the default paths for logging
471         and the recommended number of channels.
472         * include/supported.h: Rearrange slightly, added CHANTYPE's
473
474 2000-04-27  Kevin L. Mitchell  <klmitch@mit.edu>
475
476         * ircd/m_close.c: convert to send_reply
477
478         * ircd/m_clearmode.c: convert to send_reply, sendcmdto_serv_butone
479
480         * ircd/m_away.c: convert to send_reply and sendcmdto_serv_butone
481
482         * ircd/m_admin.c: convert to send_reply and hunt_server_cmd
483
484         * ircd/s_user.c (hunt_server_cmd): new hunt_server replacement
485         that takes cmd and tok arguments, etc.  NOTE: THIS IMPLEMENTATION
486         HAS A MAJOR HACK!!!  The whole hunt_server architecture should be
487         carefully rethought...
488
489         * ircd/s_stats.c (hunt_stats): use new hunt_server_cmd
490
491         * include/s_user.h: hunt_server_cmd -- replacement for hunt_server
492
493         * ircd/s_misc.c: *sigh* 2.10.10 doesn't support squitting by
494         numeric nick; therefore, we have to use the server name
495
496         * ircd/m_squit.c (ms_squit): allow to squit by server numeric nick
497
498         * ircd/send.c: fix minor bugs
499
500         * ircd/s_user.c (check_target_limit): mark dead code so I filter
501         it when I grep
502
503         * ircd/s_serv.c (exit_new_server): mark dead code so I filter it
504         when I grep
505
506         * ircd/parse.c: mark dead code so I filter it when I grep
507
508         * ircd/map.c: mark dead code so I filter it when I grep
509
510         * ircd/ircd.c: mark dead code so I filter it when I grep
511
512         * ircd/ircd_relay.c: convert over to new sendcmdto_*, send_reply
513         functions
514
515         * ircd/channel.c: mark dead code so I filter it when I grep
516
517         * ircd/s_stats.c: use send_reply instead of sendto_one w/rpl_str;
518         hope I'm not stepping on toes...
519
520         * ircd/s_conf.c: more sendto_opmask_butone / send_reply
521         conversions; use ircd_snprintf in a couple of cases to negate the
522         possibility of buffer overflow
523
524 2000-04-26  Kevin L. Mitchell  <klmitch@mit.edu>
525
526         * ircd/channel.c: convert as much as possible to new send
527         semantics
528
529         * ircd/send.c (sendcmdto_common_channels): fix a subtle bug --
530         test member->user->from->fd, not from->fd
531
532         * ircd/gline.c (gline_add): go ahead and add badchans; we just
533         won't look for them in m_gline; this way, they always work...
534
535         * ircd/jupe.c: use ircd_vsnprintf conversion specifiers
536
537         * ircd/gline.c: since write_log now uses ircd_vsnprintf, use
538         ircd_vsnprintf conversion specifiers
539
540         * ircd/support.c (write_log): use ircd_vsnprintf for write_log, so
541         I have my conversion specifiers
542
543         * ircd/gline.c (do_gline): use send_reply for ERR_YOUREBANNEDCREEP
544
545         * ircd/send.c (sendcmdto_flag_butone): explicitly send WALLOPS to
546         local users
547
548         * ircd/s_serv.c (exit_new_server): rewrite exit_new_server to be a
549         little less brain-dead
550
551         * ircd/s_misc.c: use sendcmdto_one, sendrawto_one, and send_reply
552
553         * ircd/s_debug.c: use send_reply with RPL_EXPLICIT for
554         RPL_STATSDEBUG
555
556         * ircd/res.c (cres_mem): use send_reply with RPL_EXPLICIT for
557         RPL_STATSDEBUG
558
559         * ircd/list.c (send_listinfo): use send_reply with RPL_EXPLICIT
560         for RPL_STATSDEBUG
561
562         * ircd/m_pong.c: use RPL_EXPLICIT for ERR_BADPING
563
564         * ircd/ircd.c: use RPL_EXPLICIT for ERR_BADPING
565
566         * ircd/s_user.c (register_user): use RPL_EXPLICIT for
567         ERR_INVALIDUSERNAME
568
569         * ircd/ircd_reply.c (send_reply): support RPL_EXPLICIT
570
571         * include/ircd_reply.h (RPL_EXPLICIT): somewhat of a hack to mark
572         a numeric as needing to use an explicit pattern, which will be the
573         first argument in the variable argument list
574
575         * ircd/s_user.c: use sendrawto_one instead of sendto_one to send
576         non-prefixed nospoof PING
577
578         * ircd/s_bsd.c: use sendrawto_one instead of sendto_one to send
579         non-prefixed SERVER login
580
581         * ircd/ircd.c (check_pings): fix last sendto_one calls (except for
582         a numeric usage further up)
583
584         * include/send.h: declare sendrawto_one
585
586         * ircd/send.c (sendrawto_one): new function to use ONLY for
587         non-prefixed commands, like PING to client, or PASS/SERVER on
588         server registration
589
590 2000-04-25  Kevin L. Mitchell  <klmitch@mit.edu>
591
592         * ircd/ircd_snprintf.c (doprintf): implement %H for possible
593         future expansion (channel numerics?)
594
595         * include/ircd_snprintf.h: added documentation to # to explain use
596         with %C; added documentation for : to explain use with %C; added
597         documentation for %H for channels
598
599         * ircd/whocmds.c: use send_reply
600
601         * ircd/userload.c: use sendcmdto_one
602
603         * ircd/uping.c: use sendcmdto_one
604
605         * ircd/send.c: use new flags to %C format string; ':' prefixes
606         client name with a colon for local connects, '#' uses
607         nick!user@host form for local connects
608
609         * ircd/s_user.c: use send_reply, sendto_opmask_butone,
610         sendcmdto_one, sendcmdto_serv_butone, sendcmdto_flag_butone
611
612         * ircd/s_serv.c: use sendcmdto_one, sendto_opmask_butone
613
614         * ircd/s_bsd.c: use sendto_opmask_butone, send_reply,
615         sendcmdto_one
616
617         * ircd/s_auth.c: use sendto_opmask_butone
618
619         * ircd/res.c: use sendcmdto_one
620
621         * ircd/ircd_snprintf.c (doprintf): minor bug fixes and some
622         debugging assertions
623
624 2000-04-24  Kevin L. Mitchell  <klmitch@mit.edu>
625
626         * ircd/support.c: dumpcore is no longer used, so get rid of it
627
628         * ircd/parse.c: use send_reply, sendcmdto_one
629
630         * ircd/map.c: use send_reply
631
632         * ircd/listener.c: use send_reply
633
634         * ircd/jupe.c: use sendto_opmask_butone, send_reply
635
636         * ircd/ircd_reply.c: use send_reply
637
638         * ircd/ircd.c: use sendto_opmask_butone
639
640         * ircd/gline.c: use sendto_opmask_butone, send_reply
641
642         * ircd/ircd_snprintf.c (doprintf): make it deal with incompletely
643         registered clients; make FLAG_ALT print nick!user@host; make
644         FLAG_COLON print :blah
645
646         * ircd/class.c (report_classes): use send_reply instead of
647         sendto_one
648
649         * ircd/hash.c (m_hash): replace sendto_one with sendcmdto_one
650
651         * ircd/IPcheck.c (ip_registry_connect_succeeded): replace
652         sendto_one with sendcmdto_one
653
654 2000-04-21  Kevin L. Mitchell  <klmitch@mit.edu>
655
656         * ircd/send.c: clean up logic in sendcmdto_channel_butone; use
657         MyConnect() instead of IsServer() in sendcmdto_flag_butone; define
658         sendcmdto_match_butone
659
660         * include/send.h: declare sendcmdto_match_butone
661
662 2000-04-20  Kevin L. Mitchell  <klmitch@mit.edu>
663
664         * ircd/jupe.c: update to use send_reply()
665
666         * ircd/gline.c: update to use send_reply()
667
668         * include/ircd_reply.h: declare send_reply
669
670         * ircd/ircd_reply.c (send_reply): send_error_to_client, but for
671         replies; uses ircd_snprintf
672
673         * ircd/send.c: added comments to redirect searchers to appropriate
674         sendcmdto_* function; moved new functions to end of file; added
675         explanatory comments; reordered arguments; defined new functions
676         mentioned below
677
678         * ircd/m_jupe.c: reorder arguments to sendcmdto_* functions
679
680         * ircd/m_gline.c: reorder arguments to sendcmdto_* functions
681
682         * ircd/jupe.c: reorder arguments to sendcmdto_* functions
683
684         * ircd/gline.c: reorder arguments to sendcmdto_* functions
685
686         * include/send.h: reorder arguments, add explanatory comments,
687         declare new functions sendcmdto_flag_butone, sendto_opmask_butone,
688         and vsendto_opmask_butone
689
690 2000-04-19  Kevin L. Mitchell  <klmitch@mit.edu>
691
692         * ircd/send.c: define sendcmdto_channel_butone, wrote a simplified
693         vsendto_op_mask that uses '*' instead of the receiving client
694         nickname
695
696         * include/send.h: declare sendcmdto_channel_butone; takes a skip
697         argument that allows you to skip (or not to skip) deaf users,
698         users behind bursting servers, and non channel operators
699
700 2000-04-17  Kevin L. Mitchell  <klmitch@mit.edu>
701
702         * ircd/send.c: new sendcmdto_channel_butserv -- note that old
703         sendto_channel_butserv has a subtle bug; also wrote
704         sendcmdto_common_channels.
705
706         * include/send.h: declare new sendcmdto_* functions
707
708         * ircd/jupe.c: support local deactivations of jupes
709
710         * ircd/gline.c: support local deactivations of glines
711
712         * include/jupe.h: JUPE_LDEACT allows jupes to be locally
713         deactivated; if they aren't locally deactivated, then it slaves to
714         the net-wide activation status; JupeIsRemActive() tests only
715         whether the jupe is active everywhere else
716
717         * include/gline.h: GLINE_LDEACT allows glines to be locally
718         deactivated; if they aren't locally deactivated, then it slaves to
719         the net-wide activation status; GlineIsRemActive() tests only
720         whether the gline is active everywhere else
721
722         * ircd/gline.c: detect overlapping G-lines; if an existing, wider
723         gline expires after the new one will, we drop the new one,
724         otherwise we add the G-line after that one (so the wide one will
725         apply first); if the new one contains an existing G-line and if it
726         will expire after the existing one, we drop the existing one to
727         save memory
728
729         * ircd/m_gline.c (mo_gline): opers could issue remote local
730         glines when CONFIG_OPERCMDS was off; fixed
731
732 2000-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
733
734         * ircd/m_jupe.c (mo_jupe): allow target argument to be dropped if
735         this is a local JUPE
736
737         * ircd/gline.c: add flags argument to gline_activate and
738         gline_deactivate for future expansion
739
740         * ircd/m_gline.c: pass flags to gline_activate and
741         gline_deactivate
742
743         * include/gline.h: add flags argument to gline_activate and
744         gline_deactivate
745
746         * ircd/jupe.c: add flags argument to jupe_activate and
747         jupe_deactivate for future expansion
748
749         * include/jupe.h: add flags argument to jupe_activate and
750         jupe_deactivate
751
752         * ircd/m_jupe.c: pass a flags argument to jupe_add instead of
753         local, active; pass flags to jupe_activate and jupe_deactivate
754
755         * include/gline.h: remove dead code
756
757         * ircd/gline.c: make gline expire times relative to CurrentTime,
758         since that should be monotonically increasing, instead of
759         TStime(), which can be set backwards, and which can therefore
760         cause an expire time to increase; make local glines be removed
761         instead of just deactivated; don't let gline_find() look for
762         user@host glines if the mask being looked up is a channel mask
763
764         * ircd/send.c (vsendcmdto_one): forgot to account for the case
765         where origin is a server and destination is a user
766
767         * ircd/jupe.c: make jupe expire times relative to CurrentTime,
768         since that should be monotonically increasing, instead of
769         TStime(), which can be set backwards, and which can therefore
770         cause an expire time to increase; make local jupes be removed
771         instead of just deactivated
772
773         * ircd/ircd_snprintf.c: d'oh, thanks for catching that; short for
774         limit is fine.  any other warnings I should know about?
775
776 2000-04-15  Thomas Helvey <tomh@inxpress.net>
777
778         * ircd/*.c: const correctness and type safety cleanups to
779         get code to compile with C++ compiler. Still has
780         signed/unsigned comparison warnings.
781
782 2000-04-15  Greg Sikorski <gte@atomicrevs.demon.co.uk>
783
784         * ircd/userload.c: change <sys/time.h> include to <time.h> for
785           portability.
786
787 2000-04-14  Kevin L. Mitchell  <klmitch@mit.edu>
788
789         * ircd/m_gline.c (mo_gline): d'oh, target isn't a numeric; use %C
790         and convert acptr...
791
792         * ircd/s_user.c: move gline_lookup function call into
793         register_user, where it'll have a username to lookup!
794
795         * ircd/m_gline.c: modify to utilize new sendcmdto_* series of
796         functions; also stuff send_error_to_client into return clauses
797
798         * ircd/m_jupe.c: modify to utilize new sendcmdto_* series of
799         functions; also use send_error_to_client where that makes sense
800
801         * ircd/jupe.c: modify to utilize new sendcmdto_* series of
802         functions; also use send_error_to_client where that makes sense
803
804         * ircd/gline.c: modify to utilize new sendcmdto_* series of
805         functions; also fix gline_lookup() to deal properly with remote
806         clients--boy, do struct Client and struct User need to be cleaned
807         up!
808
809         * ircd/ircd_snprintf.c (doprintf): a dest of &me is a server,
810         too...
811
812         * ircd/send.c: wrote sendcmdto_one(), vsendcmdto_one(), and
813         sendcmdto_serv_butone(), all utilizing the %v conversion of
814         ircd_snprintf()
815
816         * include/send.h: define IRC_BUFSIZE, max size of a message;
817         declare sendcmdto_one(), vsendcmdto_one(), and
818         sendcmdto_serv_butone()
819
820         * include/msg.h: define all the CMD_* constants needed to utilize
821         the new sendcmdto_* series of functions
822
823         * ircd/Makefile.in (SRC): list ircd_snprintf.c; run make depend
824
825         * ircd/gline.c: remove old, dead code.
826
827         * ircd/m_gline.c (mo_gline): disallow setting of global G-lines
828         unless CONFIG_OPERCMDS is enabled; disallow listing of all G-lines
829         (don't advertise proxies); remove dead code
830
831         * ircd/parse.c: oper handler for JUPE only lists jupes unless
832         CONFIG_OPERCMDS is enabled
833
834         * ircd/m_jupe.c (mo_jupe): don't compile mo_jupe() if
835         CONFIG_OPERCMDS is not enabled; we'll disable it in parse.c
836
837         * ircd/m_opmode.c (mo_opmode): if CONFIG_OPERCMDS is not enabled,
838         always return ERR_DISABLED
839
840         * ircd/m_clearmode.c (mo_clearmode): if CONFIG_OPERCMDS is not
841         enabled, always return ERR_DISABLED
842
843         * ircd/s_err.c: add error message to indicate disabled commands
844
845         * include/numeric.h (ERR_DISABLED): to indicate disabled commands
846
847         * doc/Configure.help: add documentation for CONFIG_OPERCMDS
848
849         * config/config-sh.in: add CONFIG_OPERCMDS, default both it and
850         CONFIG_NEW_MODE to 'y' for now
851
852         * ircd/gline.c (gline_list): fix a minor formatting bogon
853
854         * BUGS: since I fixed that bug, might as well mark it fixed.
855
856         * ircd/m_join.c: look up badchans with GLINE_EXACT
857
858         * ircd/m_gline.c: fix parc count problems; look up existing
859         G-lines with GLINE_EXACT; only set new lastmod when
860         activating/deactivating existing glines if old lastmod was not 0
861
862         * ircd/gline.c: forgot to copy the gline reason over; don't
863         propagate a gline with 0 lastmod if origin is user; add
864         GLINE_EXACT to force exact matching of gline mask
865
866         * ircd/ircd_snprintf.c (doprintf): forgot to deal with the zero
867         flag properly
868
869         * ircd/s_conf.c (find_kill): gline_find() takes a char *userhost,
870         but gline_lookup() actually takes a client--d'oh.
871
872 2000-04-13  Thomas Helvey <tomh@inxpress.net>
873         * ircd/IPcheck.c: Back port BLMet's bugfix from 2.10.10
874
875 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
876
877         * ircd/whocmds.c: Don't make idle flag default in /who, to prevent:
878           "/who * x"
879           "Gte3 H*iwg Gte@212.49.240.217 :1 :0 I am the one that was."
880           (Found by Plexus).
881
882         * ircd/whocmds.c: Change idle time calc from socket idle to user
883           idle.
884
885 2000-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
886
887         * config/aclocal.m4 (unet_CHECK_TYPE_SIZES): check size of void *,
888         too, for ircd_snprintf.c
889
890         * include/ircd_snprintf.h: documentation for ircd_(v)snprintf, in
891         comments; mostly descended from the Linux manpage for printf, but
892         also documenting the extensions.
893
894         * ircd/ircd_snprintf.c: NULL dest is equivalent to going to a
895         client; make 'q' be the same as 'L'; remove __inline__; only
896         define EXTENSION if HAVE_LONG_LONG is defined
897
898         * include/handlers.h: declare m_gline()
899
900         * ircd/parse.c: gline can be called by users, but it only lists
901         the glines.
902
903         * ircd/s_user.c (set_nick_name): resend gline if a remote server
904         introduces a glined client
905
906         * ircd/s_serv.c (server_estab): burst glines, too
907
908         * ircd/gline.c: fix up all the expire times to be offsets;
909         simplify gline_resend()
910
911         * ircd/m_gline.c: begin coding replacements for ms_gline(),
912         mo_gline(), and m_gline()
913
914         * ircd/gline.c (gline_add): allow *@#channel to work correctly;
915         also, prohibit local BADCHANs if LOCAL_BADCHAN not defined
916
917 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
918
919         * tools/Bouncer/*: Add comments/documentation/tags.
920         * tools/Bouncer/*: Add debug defines, make task fork().
921
922 2000-04-12  Thomas Helvey <tomh@inxpress.net>
923         * ircd/s_err.c: Cleanup s_err.c make one table so we
924         don't have to do anything tricky to get an error string.
925
926 2000-04-12  Greg Sikorski <gte@atomicrevs.demon.co.uk>
927         * Add port bouncer for http (x/w)
928
929 2000-04-12  Kevin L. Mitchell  <klmitch@mit.edu>
930
931         * ircd/s_conf.c (find_kill): replaced call to find_gline() with a
932         call to gline_find(); also used GlineReason() instead of direct
933         reference to structure member
934
935         * ircd/m_join.c (m_join): replace bad_channel() calls with calls
936         to gline_find(name, GLINE_BADCHAN), and also check to see if gline
937         is active
938
939         * ircd/channel.c: nothing seems to be called anywhere...
940
941         * ircd/s_err.c: update a couple of replies to dovetail with new
942         semantics
943
944         * ircd/gline.c: begin complete re-implementation of gline.c along
945         the lines of the final design of jupe.c
946
947         * include/gline.h: begin complete re-implementation of gline.c
948         along the lines of the final design of jupe.c
949
950         * ircd/channel.c (mode_process_clients): fix "Deop of +k user on
951         %s by %s" message...
952
953         * ircd/ircd_snprintf.c: my new snprintf()-like functions
954
955         * include/ircd_snprintf.h: my new snprintf()-like functions
956
957 2000-04-11  Thomas Helvey <tomh@inxpress.net>
958         * ircd/IPcheck.c: removed old dead code
959         * ircd/s_user.c (send_user_info): removed non-standard
960           user not found message for userhost/userip
961
962 2000-04-11  Greg Sikorski <gte@atomicrevs.demon.co.uk>
963
964         * ircd/s_err.c: Added missing quotes to ERR_DONTCHEAT numeric.
965         * doc/p10.html: Work on chapter 4.
966
967 2000-04-10  Kevin L. Mitchell  <klmitch@mit.edu>
968
969         * ircd/channel.c (mode_parse_client): fix coredump on /mode
970         #foobar +o nosuchnick
971
972 2000-04-10  Perry Lorier  <Isomer@coders.net>
973         * BUGS: Added bug.
974
975 2000-04-09  Thomas Helvey <tomh@inxpress.net>
976         * include/IPcheck.h: fix prototype
977         * ircd/s_user.c: fix usage of IPcheck_remote_connect
978         * ircd/IPcheck.c: removed unused args
979
980 2000-04-09  Thomas Helvey <tomh@inxpress.net>
981         * include/IPcheck.h: add proto for IPcheck_expire
982
983         * ircd/IPcheck.c: Rewrote
984
985         * ircd/ircd.c: Add IPcheck_expire to main message loop
986
987         * ircd/s_user.c: Redo target hashing, refactor target code
988
989         * include/numeric.h: Cleaned up numerics, added which ones are
990         in use by other networks and what they are in use for.
991
992         * ircd/channel.c: cleaned can_join(), allow anyone through anything
993         if /invited, simplified the function.  Opers overusing OPEROVERRIDE
994         will get a message explaining to them not to cheat.
995
996         * ircd/m_join.c: cleaned up the various join functions, should be
997         a lot more efficient.  Still needs work.  Now assumes that s<->s
998         won't send it a JOIN 0.  Service coders - note this and tread with
999         care.
1000
1001         * ircd/m_stats.c: added Gte-'s stats doc patch.
1002
1003         * ircd/m_version.c: /version now returns the 005 numeric as well.
1004         as requested by Liandrin.
1005
1006
1007 2000-04-07  Kevin L. Mitchell  <klmitch@mit.edu>
1008
1009         * ircd/m_clearmode.c: add include for support.h for write_log()
1010
1011         * configure: move ircd/crypt/* to tools/*
1012
1013 2000-04-06  Thomas Helvey <tomh@inxpress.net>
1014         * ircd/s_auth.c: Shorten auth connect timeout to 60 seconds
1015           set client host to server alias if connection from localhost
1016
1017 2000-04-06  Perry Lorier <isomer@coders.net>
1018         * ircd/ircd.c: Fix core during pinging (oops)
1019         
1020 2000-04-06  Perry Lorier <isomer@coders.net>
1021         * ircd/send.c: fixed wrong ident being sent to channels bug.
1022         * include/numerics.h: Updated some of the numerics from other
1023         networks.  Flagged some as 'unused' by undernet.
1024
1025 2000-03-30  Perry Lorier <isomer@coders.net>
1026         * ircd/ircd.c: Lets see if this helps the ping problem at all.
1027         * ircd/whocmds.c, /doc/readme.who: Added %l specifier to get idle
1028         time for local clients. (as requested), extended who now returns all
1029         the flags (@+!) so you can tell the complete state of a client.
1030
1031 2000-03-30  Thomas Helvey <tomh@inxpress.net>
1032         * m_rping.c m_rpong.c: add Gte's rping/rpong fixes
1033
1034 2000-03-30  Perry Lorier <isomer@coders.net>
1035         * ircd/parse.c: oops, missed opers.
1036
1037 2000-03-30  Perry Lorier <isomer@coders.net>
1038         * ircd/parse.c: fixed mystifying ping bug thats been plaguing us
1039         for so long.  Remember: m_ping MUST be in the parse array. :)
1040
1041 2000-03-30  Perry Lorier <isomer@coders.net>
1042         * ircd/ircd.c: test in check_pings was wrong.  I move that we
1043         disallow cvs commit after 10pm localtime....
1044
1045 2000-03-30  Perry Lorier <isomer@coders.net>
1046         * ircd/m_pong.c: Fix it for servers too.
1047
1048 2000-03-30  Perry Lorier <isomer@coders.net>
1049         * ircd/m_pong.c: Fix ping timeout bugs
1050
1051 2000-03-30  Perry Lorier <isomer@coders.net>
1052         * ircd/channel.c: Bans had CurrentTime in their when field instead
1053         of TStime()
1054
1055 2000-03-31  Thomas Helvey <tomh@ixpress.net>
1056         * ircd/numnicks.c (SetXYYCapacity): fix for extended
1057         numerics.
1058
1059 2000-03-30  Perry Lorier <isomer@coders.net>
1060         * ircd/m_nick.c: send kills both ways so when we add nick change
1061         on collision we don't desync the network.
1062
1063         * ircd/map.c: Fixup the map a bit more.
1064
1065 2000-03-31  Kevin L. Mitchell  <klmitch@mit.edu>
1066
1067         * ircd/m_clearmode.c (do_clearmode): Log the CLEARMODE to OPATH
1068
1069         * ircd/m_opmode.c: Log the mode changes to OPATH
1070
1071         * ircd/channel.c (modebuf_flush_int): Log the mode changes to
1072         OPATH
1073
1074         * include/channel.h (MODEBUF_DEST_LOG): Log the mode changes to
1075         OPATH
1076
1077         * doc/Configure.help: help text for CONFIG_LOG_OPMODE / OPATH
1078
1079         * config/config-sh.in: added OPATH for opmode log file
1080
1081         * ircd/m_clearmode.c (do_clearmode): updated uses of
1082         modebuf_mode_string() for the new usage
1083
1084         * ircd/channel.c: added flag MODE_FREE and an int argument to
1085         modebuf_mode_string() to indicate that the string must be free'd;
1086         updated calls to modebuf_mode_string() for the new usage; called
1087         collapse(pretty_mask()) on the ban string and use allocated memory
1088         for it; added ban list length accounting; fixed a number of small
1089         bugs in ban processing
1090
1091         * include/channel.h: added flag MODE_FREE and an int argument to
1092         modebuf_mode_string() to indicate that the string must be free'd
1093
1094         * ircd/m_clearmode.c (do_clearmode): made sure clearmode removed
1095         keys and limits that are set
1096
1097 2000-03-30  Perry Lorier <isomer@coders.net>
1098         * ircd/ircd.c: rewrote check_pings() for maintainability
1099         and speed.  Also changed quit msg's so they don't have
1100         redundant nick[host] info in them.
1101
1102         * ircd/send.c: Changed write errors to report what error
1103         occured (if possible).
1104
1105         * ircd/gline.c: added gline comment to the quit.
1106
1107         * ircd/m_server.c: Added suggestions to server quits mentioning
1108         what went wrong so the admin can fix it earlier instead of asking
1109         questions...
1110
1111         * ircd/map.c: Changed m_map() to hide numerics, show a * beside
1112         servers that aren't fully burst yet.  And show '(--s)' for servers
1113         where its not sure.
1114
1115         * doc/example.conf: Fixed wrapped U:
1116
1117 2000-03-30  Kevin L. Mitchell  <klmitch@mit.edu>
1118
1119         * ircd/m_mode.c (ms_mode): implemented a new m_mode in terms of
1120         mode_parse() (version selectable at compile time)
1121
1122         * ircd/m_clearmode.c (mo_clearmode): clean_channelname(parv[1])
1123
1124         * ircd/m_opmode.c (mo_opmode): clean_channelname(parv[1])
1125
1126         * config/config-sh.in: add new config option to enable new m_mode
1127         implementation
1128
1129         * doc/Configure.help: add documentation for new config option
1130         CONFIG_NEW_MODE
1131
1132         * ircd/channel.c (mode_parse_client): /opmode #foobar -o -- 461
1133         MODE -v : Not enough parameters
1134
1135         * ircd/m_clearmode.c (do_clearmode): do_clearmode() would remove
1136         +k and +l even if they weren't set...
1137
1138         * ircd/m_opmode.c: implement the OPMODE command using mode_parse()
1139
1140         * ircd/channel.c: make mode_process_clients() clear the DEOPPED
1141         flag; fix +s+p exclusivity; add MODE_ADD/MODE_DEL to flag list
1142         for; test the 0-th member, not the i-th member, of the client
1143         change state stuff
1144
1145         * ircd/m_clearmode.c (do_clearmode): use the new
1146         mode_invite_clear() function
1147
1148         * ircd/channel.c: cleared up all the compile-time warnings and
1149         errors
1150
1151         * include/channel.h: added declarations for mode_ban_invalidate()
1152         and mode_invite_clear()
1153
1154         * ircd/channel.c: finished mode_parse(), then broke it up into a
1155         dozen or so helper functions to make the code easier to read
1156
1157 2000-03-29  Thomas Helvey <tomh@inxpress.net>
1158         * ircd/ircd.c: refactor server initialization a bit, use
1159         getopt for parsing command line, refactor init_sys, main,
1160         and other bits.
1161
1162         * ircd/s_bsd.c: add functions for initialization to clean
1163         up logic a bit and remove duplicated code.
1164
1165         * include/ircd.h: add struct for server process related
1166         variables.
1167
1168 2000-03-29  Kevin L. Mitchell  <klmitch@mit.edu>
1169
1170         * ircd/channel.c: initial definition of mode_parse(); flags to
1171         prevent doing the same thing multiple times; helper method
1172         send_notoper() to send a "Not oper"/"Not on channel" notice
1173
1174         * include/channel.h: declare mode_parse() and helper flags
1175
1176         * ircd/channel.c (modebuf_flush_int): fiddled with timestamp
1177         sending to match the current action of set_mode() closely enough
1178         that hopefully there won't be major conflicts
1179
1180         * ircd/channel.c (modebuf_flush_int): consolidated the mode string
1181         building logic, reversed the order of the arguments to mode
1182         commands to have '-' preceed '+'
1183
1184 2000-03-29  Thomas Helvey <tomh@inxpress.net>
1185         * ircd/s_bsd.c (add_connection): don't disable socket options
1186         let OS tune itself and allow important performance tweaks to 
1187         work.
1188
1189 2000-03-28  Kevin L. Mitchell  <klmitch@mit.edu>
1190
1191         * ircd/channel.c (modebuf_flush_int): use %d, not %-15d; I got
1192         confused by set_mode, which is doing some really weird logic;
1193         guess what I'm going to rewrite next?  ;)
1194
1195 2000-03-28  Kevin L. Mitchell  <klmitch@emc.com>
1196
1197         * include/channel.h: added MODE_SAVE for the bounds checking stuff
1198         in modebuf_flush
1199
1200         * ircd/channel.c: make modebuf_flush into modebuf_flush_int and
1201         make it do bounds checking on the buffer; all modes are sent only
1202         if the all parameter is 1; modebuf_flush is the exported wrapper
1203
1204         * include/channel.h: add BOUNCE, renumber flags to get a little
1205         more space
1206
1207         * ircd/channel.c (modebuf_flush): don't overload HACK2, add
1208         BOUNCE; send DESYNCH message
1209
1210 2000-03-27  Kevin L. Mitchell  <klmitch@emc.com>
1211
1212         * ircd/m_clearmode.c (do_clearmode): only mark the modes the
1213         channel actually has in effect for deletion
1214
1215         * ircd/channel.c: added explanatory comments to all added
1216         functions; made flushing take place at the correct place even if
1217         the MODEBUF_DEST_DEOP flag is set; rewrote build_string() helper
1218         to bash some stupid bugs; made modebuf_flush() return if ModeBuf
1219         is empty, fixed the apparent source, removed some bogus string
1220         termination code, properly terminate the mode strings, add support
1221         for HACK2 and HACK3, made limit strings not be sent if the limit
1222         is being removed, changed where '+' and '-' come from in sent
1223         strings, added support for DEOP flag, set up bouncing code for
1224         HACK2
1225
1226         * ircd/Makefile.in: ran make depend
1227
1228         * include/channel.h: added new defines for future functionality,
1229         made modebuf_flush() return int so I can use tail recursion
1230
1231         * ircd/m_clearmode.c: add msg.h to includes; other misc cleanups
1232         to make it all compile
1233
1234         * ircd/m_opmode.c: add msg.h to includes...
1235
1236         * ircd/m_clearmode.c: implemented mo_clearchan()/ms_clearchan()
1237
1238         * ircd/channel.c (modebuf_flush): realized I forgot to
1239         nul-terminate addbuf/rembuf properly...
1240
1241         * ircd/m_clearmode.c (do_clearmode): wrote do_clearmode()...
1242
1243         * ircd/channel.c (modebuf_flush): correct sendto_server_butone to
1244         sendto_serv_butone--blah^2
1245
1246         * ircd/send.c (sendto_serv_butone): stupid comments confused me
1247
1248         * ircd/channel.c (modebuf_flush): if there are no mode changes to
1249         propagate, we're done...
1250
1251         * ircd/channel.c (modebuf_flush): duh; it's sendto_server_butone,
1252         not sendto_all_butone
1253
1254         * ircd/m_clearmode.c: define skeleton for m{o,s}_clearmode
1255
1256         * ircd/m_opmode.c: define skeleton for m{o,s}_opmode
1257
1258         * ircd/Makefile.in (SRC): added m_opmode() and m_clearmode() to
1259         the list
1260
1261         * ircd/parse.c: added messages for opmode and clearmode
1262
1263         * include/handlers.h: added declarations for mo_opmode(),
1264         ms_opmode(), mo_clearmode(), and ms_clearmode()
1265
1266         * include/msg.h: define MSG_OPMODE, TOK_OPMODE, MSG_CLEARMODE, and
1267         TOK_CLEARMODE
1268
1269         * include/channel.h (MODEBUF_DEST_OPMODE): Define the
1270         MODEBUF_DEST_OPMODE flag
1271
1272         * ircd/channel.c (modebuf_flush): added new flag,
1273         MODEBUF_DEST_OPMODE; causes channel MODE/HACK(4) notice to appear
1274         to originate from source's server (or source itself, if
1275         IsServer(source)); also causes a server-level MODE to be sent as
1276         OPMODE instead
1277
1278         * include/channel.h: defined MODEBUF_DEST_SERVER,
1279         MODEBUF_DEST_HACK4
1280
1281         * ircd/channel.c: Add another argument to build_string() to handle
1282         numeric nicks; implemented MODEBUF_DEST_SERVER to send MODEs to
1283         servers; implemented MODEBUF_DEST_HACK4 to cause HACK(4) notices
1284         to be sent out
1285
1286 2000-03-27  Perry Lorier <isomer@coders.net>
1287
1288         * ircd/s_bsd.c: fixed missing 'u' typo.
1289
1290 2000-03-26  Kevin L. Mitchell  <klmitch@emc.com>
1291
1292         * ircd/channel.c: implement modebuf_init(), _mode(), _mode_uint(),
1293         _mode_string(), _mode_client(), _flush(); also implemented a
1294         simple build_string()
1295
1296         * include/channel.h: added definition of ModeBuf, modebuf_*
1297         manipulation functions, and a couple of helper macros
1298
1299 2000-03-24 Thomas Helvey <tomh@inxpress.net>
1300   * numicks.c: convert extended numerics to use original mask version
1301   * numnicks.h: ""
1302   * s_user.c:
1303 2000-03-23 Thomas Helvey <tomh@inxpress.net>
1304   * Merge in changes from production
1305 2000-03-22 Thomas Helvey <tomh@inxpress.net>
1306   * numicks.c: Tweak to numnick generator to reduce possibility of duplicates.
1307   * rfc1459.unet: Add Maniac's documentation for /names 0
1308 * Fix misc. jupe bugs that somehow made it into the tree
1309 * Escape /names 0 to mean /names --Maniac
1310 * Don't core when server asks for info --Maniac 
1311 * Add Kev's jupe patch --Bleep
1312 * Add Maniacs squit patch --Bleep
1313 * Merge in u2_10_10_beta07 changes --Bleep
1314 * Merge in u2_10_10_beta06 changes --Bleep
1315 * Start ircu2.10.11 development, beta branch u2_10_10 --Bleep
1316 #-----------------------------------------------------------------------------
1317 #
1318 # ChangeLog for ircu2.10.11
1319 #
1320 # $Id: ChangeLog,v 1.162 2000-09-15 07:27:08 bleep Exp $
1321 #
1322 # Insert new changes at beginning of the change list.
1323 #