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