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