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