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