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