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