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