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