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