Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ChangeLog
1 2001-04-18  Kevin L. Mitchell  <klmitch@mit.edu>
2
3         * ircd/s_conf.c: keep the $R in memory so we can see it clearly
4         when we do a /stats k
5
6         * ircd/s_user.c (set_user_mode): pull-up of changes to prevent
7         users from turning on +s and +g
8
9         * ircd/s_misc.c (exit_client): pull-up of changes to turn off
10         net.split notice
11
12         * ircd/parse.c: pull-up of changes to disable /trace, /links, and
13         /map for users
14
15         * ircd/m_whois.c (do_whois): pull-up of server name masking for
16         /whois
17
18         * ircd/m_user.c (m_user): removal of umode and snomask defaulting
19         functions, pull-up
20
21         * ircd/m_stats.c (m_stats): pull-up of stats-disabling stuff
22
23         * ircd/m_map.c (m_map_redirect): pull-up of m_map_redirect()
24
25         * ircd/m_links.c (m_links_redirect): pull-up of m_links_redirect()
26
27         * ircd/channel.c (channel_modes): pull-up of channel key display
28         as *
29
30         * include/ircd_policy.h: pull-up of ircd_policy.h
31
32         * include/client.h: pull-up of Set/ClearServNotice()
33
34         * ircd/gline.c (do_gline): report client name in G-line message
35         (pull-up)
36
37         * ircd/s_user.c (register_user): pull-up--show IP address in some
38         server notices dealing only with users; report which connection
39         class has filled up
40
41         * ircd/s_stats.c (report_deny_list): use conf->flags &
42         DENY_FLAGS_IP insteaf of conf->ip_kill
43
44         * ircd/m_stats.c (report_klines): use conf->flags & DENY_FLAGS_IP
45         insteaf of conf->ip_kill
46
47         * ircd/s_conf.c: use flags field in struct DenyConf; pull-up of
48         K-line by real name
49
50         * include/s_conf.h: use a flags field in struct DenyConf; define
51         DENY_FLAGS_FILE, DENY_FLAGS_IP, and DENY_FLAGS_REALNAME for
52         pull-up of K-line by real name
53
54         * ircd/m_trace.c: pull-up of IP show for user connections
55
56         * doc/example.conf: pull-up of the realname K-line documentation
57
58         * ircd/ircd.c: forward port of pid file advisory locking mechanism
59
60 2001-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
61
62         * ircd/send.c (sendcmdto_flag_butone): recast to just broadcast to
63         all servers, rather than to only servers that have +w/+g/whatever
64         users on them; among other things, this removes that atrocity
65         known as sentalong[] from this function
66
67         * ircd/m_admin.c: must include ircd.h to declare "me"; must
68         include hash.h to declare FindUser()
69
70         * ircd/m_wallusers.c: implementation of WALLUSERS
71
72         * ircd/m_desynch.c (ms_desynch): only send DESYNCHs to opers
73
74         * ircd/m_wallops.c: only send WALLOPS to opers
75
76         * ircd/parse.c: add WALLUSERS command to parser table
77
78         * include/handlers.h: declare wallusers handlers
79
80         * include/msg.h: add WALLUSERS command
81
82         * ircd/send.c (sendcmdto_flag_butone): if FLAGS_OPER is or'd with
83         flag, send only to appropriate opers
84
85 2001-03-13 Joseph Bongaarts <foxxe@wtfs.net>
86         * ircd/os_openbsd.c: Tweaked the openbsd hack a bit.
87         
88 2001-03-07  Joseph Bongaarts  <foxxe@wtfs.net>
89
90         * config/configure.in: Add check for OpenBSD
91
92         * ircd/os_openbsd.c: Add seperate os dep file for openbsd which
93         differs from generic BSD, particularly in its handling of
94         _XOPEN_SOURCE.
95         
96 2001-02-12  Kevin L. Mitchell  <klmitch@mit.edu>
97
98         * ircd/m_gline.c (ms_gline): propagate a G-line that happened to
99         have been added by a U-lined server, rather than going through the
100         activate/deactivate logic; propagate G-line removals by U-lined
101         servers as well
102
103         * ircd/gline.c: rename propagate_gline() to gline_propagate();
104         make gline_propagate() return an int 0 (convenience return); only
105         update lastmod in gline_activate() and gline_deactivate() if the
106         current lastmod is non-zero, since 0 lastmod is our flag of a
107         U-lined server having added a G-line
108
109         * include/gline.h (gline_propagate): exporting the G-line
110         propagation function
111
112         * ircd/m_list.c (m_list): duh; permit explicit channel name
113         specification only when /list gets two arguments ("Kev
114         #wasteland") rather than when /list gets more than two
115         arguments--nice braino
116
117 2001-01-29  Thomas Helvey <twhelvey1@home.com>
118
119         * ircd/ircd_reply.c (need_more_params): fix bug that allowed
120         unregistered clients to spam opers with protocol violation
121         messages. Note: the bugfix may have eliminated some useful
122         protocol violation messages.
123         Please send protocol violation messages explicitly from the
124         functions they are discovered in, you have much better context
125         for the error there and it helps to document the behavior of the
126         server. This was also a design bug in that it violated the
127         "A function should do one thing" heuristic. Patching this one
128         would have resulted in a continuous spawning of other bugs over
129         the next 3 years, so I killed it. Check around for stuff this
130         broke and readd the calls to protocol_violation in the functions
131         that need to send the message.
132
133 2001-01-29  Kevin L. Mitchell  <klmitch@mit.edu>
134
135         * ircd/channel.c (mode_parse_ban): stopper a tiny leak--if a ban
136         already existed, then the logic would (attempt to) skip it, but
137         would not free the ban string; now the ban string is free'd and
138         the ban count is decremented, releasing the ban for use
139
140         * ircd/s_user.c: make send_umode_out() take a prop argument
141         instead of testing for the PRIV_PROPAGATE privilege itself; fix
142         set_umode() to use this new argument, calculating it before
143         calculating the new privileges for a -o'd user
144
145         * ircd/m_oper.c (m_oper): pass the new prop argument to
146         send_umode_out()
147
148         * ircd/channel.c (mode_parse_ban): turn off MODE_ADD bit in bans
149         that we're not actually going to add because they already exist;
150         test that particular bit before adding to the linked list
151
152         * include/s_user.h: add a prop argument to send_umode_out() to
153         indicate whether or not to propagate the user mode
154
155 2001-01-24  Kevin L. Mitchell  <klmitch@mit.edu>
156
157         * ircd/msgq.c: ircd_vsnprintf() returns the number of bytes that
158         it would have written; upper-bound the number to prevent overflows
159         by proxy; also, tune buffer size given to ircd_vsnprintf() to take
160         into account the fact that ircd_vsnprintf() already takes the
161         terminal \0 into account
162
163 2001-01-22  Kevin L. Mitchell  <klmitch@mit.edu>
164
165         * ircd/msgq.c: add an incredibly ugly hack to attempt to track
166         down an apparent buffer overflow; remove msgq_map(), since it's no
167         longer used anywhere; slight tweaks to prevent off-by-one errors,
168         but these can't explain the problems we've seen
169
170         * include/msgq.h: remove msgq_map(), since it's no longer used
171         anywhere
172
173 2001-01-18  Kevin L. Mitchell  <klmitch@mit.edu>
174
175         * ircd/s_user.c (set_nick_name): call client_set_privs() after
176         parsing user modes
177
178 2001-01-17  Kevin L. Mitchell  <klmitch@mit.edu>
179
180         * ircd/s_bsd.c (read_message): fix a typo in the select version of
181         read_message()
182
183         * ircd/whowas.c (whowas_free): MyFree() is a macro that expects
184         its argument to be an lvalue, which means we can't use
185         whowas_clean()'s handy-dandy "return ww" feature
186
187         * ircd/ircd_features.c: default LOCOP_KILL to TRUE--oops...
188
189 2001-01-15  Kevin L. Mitchell  <klmitch@mit.edu>
190
191         * ircd/client.c: fixed feattab; basically, when I changed features
192         to use small integers specifying bit positions, instead of the
193         bits themselves, I forgot to update feattab to not | these
194         privileges together; also fixed a bug in the antiprivs masking
195         loop in client_set_privs()--last index wouldn't get parsed
196
197 2001-01-03  Kevin L. Mitchell  <klmitch@mit.edu>
198
199         * ircd/whowas.c: Completely re-did the old allocation scheme by
200         turning it into a linked list, permitting the
201         NICKNAMEHISTORYLENGTH feature to be changed on the fly
202
203         * ircd/s_debug.c (count_memory): use FEAT_NICKNAMEHISTORYLENGTH
204         feature instead of old #define
205
206         * ircd/ircd_features.c: add NICKNAMEHISTORYLENGTH feature as an
207         integer feature with a notify callback (whowas_realloc)
208
209         * ircd/client.c (client_set_privs): second memset was supposed to
210         be over antiprivs, not privs; thanks, Chris Behrens
211         <cbehrens@xo.com> for pointing that out...
212
213         * include/whowas.h: new elements for an extra linked list in
214         struct Whowas; a notify function for feature value changes
215
216         * include/ircd_features.h: new feature--FEAT_NICKNAMEHISTORYLENGTH
217
218         * config/config-sh.in: NICKNAMEHISTORYLENGTH is now a feature
219
220 2001-01-02  Kevin L. Mitchell  <klmitch@mit.edu>
221
222         * config/config-sh.in: get rid of DEFAULT_LIST_PARAMETER
223         compile-time option--now in features subsystem
224
225         * ircd/motd.c (motd_init): rework motd_init() to be called as the
226         notify function for MPATH and RPATH features (should probably
227         split it up a bit, though...)
228
229         * ircd/m_privs.c (mo_privs): if called with no parameters, return
230         privs of the caller, rather than an error
231
232         * ircd/m_list.c: pull usage message into its own function; pull
233         list parameter processing into its own function that does not
234         modify the contents of the parameter; add list_set_default() to
235         set the default list parameter (uses the notify hook); rework
236         m_list() to make use of these functions; removed dead code
237
238         * ircd/ircd_log.c (log_feature_mark): make sure to return 0, since
239         we have no notify handler
240
241         * ircd/ircd_features.c: add notify callback for notification of
242         value changes; give mark callback an int return value to indicate
243         whether or not to call the notify callback; fix up feature macros
244         for new notify callback; add DEFAULT_LIST_PARAM feature; rewrite
245         string handling in feature_set() to deal with def_str being a null
246         pointer; wrote feature_init() to set up all defaults appropriately
247
248         * ircd/ircd.c (main): call feature_init() instead of
249         feature_mark(), to avoid calling notify functions while setting up
250         defaults
251
252         * ircd/client.c: updated to deal with new privileges structure
253
254         * ircd/class.c: updated so init_class() can be called should one
255         of PINGFREQUENCY, CONNECTFREQUENCY, MAXIMUM_LINKS, or
256         DEFAULTMAXSENDQLENGTH be changed
257
258         * include/ircd_log.h: log_feature_mark() updated to fit with new
259         API changes
260
261         * include/ircd_features.h: added DEFAULT_LIST_PARAM feature and
262         feature_init() function (found necessary since adding the notify
263         stuff and notifying motd.c during start-up...before we defined
264         RPATH!)
265
266         * include/client.h: move privs around to enable addition of more
267         bits if necessary; based on the FD_* macros
268
269         * include/channel.h: declare list_set_default (actually located in
270         m_list.c *blanche*)
271
272         * ircd/s_user.c: retrieve MAXSILES and MAXSILELENGTH (now
273         AVBANLEN*MAXSILES) from features subsystem
274
275         * ircd/s_debug.c (debug_serveropts): CMDLINE_CONFIG doesn't go to
276         anything anymore
277
278         * ircd/s_bsd.c: retrieve HANGONGOODLINK and HANGONRETRYDELAY from
279         the features subsystem
280
281         * ircd/s_auth.c (start_auth): NODNS migrated to the features
282         subsystem
283
284         * ircd/random.c: created random_seed_set() function to set seed
285         value, along with some stuff to make ircrandom() a little more
286         random--state preserving, xor of time instead of direct usage,
287         etc.; it's still a pseudo-random number generator, though, and
288         hopefully I haven't broken the randomness
289
290         * ircd/m_version.c: FEATUREVALUES makes use of feature_int() calls
291
292         * ircd/m_join.c: use features interface to retrieve
293         MAXCHANNELSPERUSER
294
295         * ircd/ircd_features.c: add NODISP flag for super-secret features;
296         add a whole bunch of new features migrated over from make config
297
298         * ircd/ircd.c: use features interface to retrieve PINGFREQUENCY,
299         CONNECTTIMEOUT, and TIMESEC
300
301         * ircd/client.c (client_get_ping): use features interface to
302         retrieve PINGFREQUENCY
303
304         * ircd/class.c: use features interface to retrieve PINGFREQUENCY,
305         CONNECTFREQUENCY, MAXIMUM_LINKS, and DEFAULTMAXSENDQLENGTH
306
307         * ircd/chkconf.c (DEFAULTMAXSENDQLENGTH): since it's now in the
308         features subsystem, we have to add something explicit
309
310         * ircd/channel.c: use features interface to retrieve
311         KILLCHASETIMELIMIT, MAXBANLENGTH, MAXBANS, and MAXCHANNELSPERUSER;
312         note that MAXBANLENGTH is now calculated dynamically from MAXBANS
313         and AVBANLEN
314
315         * ircd/Makefile.in: run make depend
316
317         * include/supported.h (FEATURESVALUES): update to reference
318         feature settings
319
320         * include/random.h: add prototype for random_seed_set
321
322         * include/ircd_features.h: add several more features
323
324         * include/channel.h: move MAXBANS and MAXBANLENGTH into feature
325         subsystem
326
327         * config/config-sh.in: feature-ized some more stuff
328
329         * include/motd.h: some new elements in motd.h for motd.c changes
330
331         * ircd/motd.c: motd_cache() now searches a list of already cached
332         MOTD files; saves us from having duplicate caches in memory if
333         there are two identical T-lines for two different sites...
334
335 2001-01-02  Perry Lorier <isomer@coders.net>
336         * ircd/motd.c: don't core if the motd isn't found.  Bug found by
337         Amarande.
338
339 2001-01-02  Perry Lorier <isomer@coders.net>
340         * ircd/s_err.c: Added third param to 004 - the channel modes that tage params.  Used by hybrid/epic.
341         * ircd/s_channels.c: Added fix for msg'ing a -n+m channel - thanks
342                 to guppy for noticing, and hektik for providing the fix.
343         * misc others: Minor cleanups, added more protocol_violations, ripped
344                 out more P09 stuffs, bit more protocol neg stuff.
345
346 2000-12-19  Kevin L. Mitchell  <klmitch@mit.edu>
347
348         * ircd/m_ison.c (m_ison): Dianora says that ISON has to end with a
349         space (*sigh* stupid clients...)
350
351         * ircd/s_user.c: make WALLOPS_OPER_ONLY a feature managed through
352         ircd_features.[ch]
353
354         * ircd/s_err.c: get rid of GODMODE conditionals
355
356         * ircd/s_debug.c (debug_serveropts): switch to using appropriate
357         calls into the features subsystem for various serveropts
358         characters
359
360         * ircd/s_conf.c (find_conf_entry): get rid of USEONE conditional
361
362         * ircd/s_bsd.c: remove GODMODE conditional; use features subsystem
363         to get value of VIRTUAL_HOST and CLIENT_FLOOD; remove
364         NOFLOWCONTROL conditional
365
366         * ircd/s_auth.c: use features subsystem to determine value of
367         KILL_IPMISMATCH
368
369         * ircd/parse.c: get rid of NOOPER and GODMODE conditionals; use
370         features subsystem to determine the setting of IDLE_FROM_MSG
371
372         * ircd/numnicks.c: get rid of EXTENDED_NUMERICS conditionals
373
374         * ircd/motd.c: get value of NODEFAULTMOTD from features subsystem;
375         use features subsystem to get motd file names
376
377         * ircd/m_settime.c: get value of RELIABLE_CLOCK from features
378         subsystem
379
380         * ircd/m_server.c: get rid of CRYPT_LINK_PASSWORD, since it does
381         us no good; use features subsystem to figure out if we need to do
382         HUB-type stuff; make TESTNET debugging sendto_opmask_butone's use
383         the Debug(()) macro instead; get value of RELIABLE_CLOCK from
384         features subsystem
385
386         * ircd/m_privmsg.c: get IDLE_FROM_MSG from the features subsystem
387
388         * ircd/m_oper.c: get CRYPT_OPER_PASSWORD from the features
389         subsystem
390
391         * ircd/m_connect.c: get SERVER_PORT from the features subsystem
392
393         * ircd/ircd_log.c (log_set_file): fix a bug that kept log files
394         from getting marked if they were already set to something...
395
396         * ircd/ircd_features.c: add a flag to indicates read-only access;
397         add several new features that used to be compile-time selected
398
399         * ircd/ircd.c: grab pidfile out of feature subsystem; don't check
400         access to motd files (what the heck?); make sure to initialize the
401         feature subsystem before trying to write the config file
402
403         * ircd/dbuf.c: use feature_int() to retrieve BUFFERPOOL settings;
404         use feature_bool() to figure out if we're using the FERGUSON
405         flusher
406
407         * ircd/Makefile.in: MPATH and RPATH are now done differently, so
408         remove the clause that creates empty files of that name; also ran
409         make depend
410
411         * include/sys.h: CLIENT_FLOOD is now a feature; unfortunately,
412         there is no easy way to bounds-check it at present
413
414         * include/querycmds.h: make sure ircd_features.h is included; use
415         feature_str(FEAT_DOMAINNAME) in calls to match()
416
417         * include/ircd_features.h: many new features that used to be
418         compile-time selected
419
420         * config/config-sh.in: add * to DOMAINNAME; try also using first
421         argument to search in /etc/resolv.conf; removed many compile-time
422         options that now can be configured through the features system
423
424 2000-12-18  Kevin L. Mitchell  <klmitch@mit.edu>
425
426         * doc/api/log.txt: how to use the logging API
427
428         * doc/api/features.txt: how to use the features API
429
430         * doc/api/api.txt: how to write API documentation
431
432         * include/ircd_features.h: rearranged a couple of features for
433         neatness purposes
434
435         * ircd/ircd_features.c: cleaned up the macros some; rearranged
436         some code to all go into the switch; rearranged a couple of
437         features for neatness purposes
438
439 2000-12-16  Greg Sikorski <gte@atomicrevs.demon.co.uk>
440         * ircd/os_bsd.c: Added os_set_tos for BSD users.
441
442 2000-12-16  Kevin L. Mitchell  <klmitch@mit.edu>
443
444         * ircd/ircd_features.c: Isomer almost got it right; you need to
445         use F_I(), since it's an integer value, not a boolean value.  The
446         asserts in feature_int would catch you out...  Also made the F_*
447         macros take flags
448
449         * ircd/s_err.c: define RPL_PRIVS reply
450
451         * ircd/parse.c: put new PRIVS command into command table
452
453         * ircd/m_privs.c (mo_privs): message handler to report operator
454         privileges
455
456         * ircd/ircd_features.c: declare new features OPER_SET and
457         LOCOP_SET; redo boolean testing routine to accept TRUE, YES, and
458         ON for boolean TRUE, and FALSE, NO, and OFF for boolean FALSE
459
460         * ircd/client.c: simplify client_set_privs() with a table that
461         defines what features to test for; add new client_report_privs()
462
463         * ircd/Makefile.in: compile new m_privs.c; run make depend
464
465         * include/numeric.h (RPL_PRIVS): new reply numeric for displaying
466         an operator's privileges
467
468         * include/msg.h: define new command: PRIVS
469
470         * include/ircd_features.h: create new features OPER_SET and
471         LOCOP_SET for controlling access to /set
472
473         * include/handlers.h (mo_privs): declare message handler for
474         reporting oper privileges
475
476         * include/client.h (client_report_privs): declare function to
477         report what privileges an oper has
478
479         * ircd/m_whois.c (do_whois): fix a bug that caused /whois to
480         report that a user is an oper if the oper doing the /whois had
481         PRIV_SEE_OPERS
482
483 2000-12-17  Isomer <Isomer@coders.net>
484         * ircd/listener.c: added support for TOS twiddling as a 'feature'.
485
486 2000-12-17  Isomer <Isomer@coders.net>
487         * ircd/os_linux.c: add TOS stuffs
488
489         * ircd/listener.c: add TOS stuffs
490
491 2000-12-16  Kevin L. Mitchell  <klmitch@mit.edu>
492
493         * ircd/whocmds.c (do_who): use HasPriv to determine whether or not
494         to indicate a user is an oper
495
496         * ircd/s_user.c: clear privileges setting when deopping; don't
497         propagate +o unless user has PRIV_PROPAGATE privilege
498
499         * ircd/s_debug.c (debug_serveropts): created debug_serveropts()
500         function and replaced how the server option string is generated
501
502         * ircd/parse.c: remove conditional on CONFIG_OPERCMDS
503
504         * ircd/m_whois.c (do_whois): use HasPriv to determine whether or
505         not to indicate the user is an operator
506
507         * ircd/m_who.c: use HasPriv to determine whether or not a user
508         should be displayed in the list of opers
509
510         * ircd/m_version.c: call debug_serveropts() to get server option
511         string
512
513         * ircd/m_userip.c (userip_formatter): use HasPriv to determine
514         whether or not to show oper status
515
516         * ircd/m_userhost.c (userhost_formatter): use HasPriv to determine
517         whether or not to show oper status
518
519         * ircd/m_restart.c (mo_restart): replace ugly #ifdef conditional
520         checks with HasPriv check; remove dead code
521
522         * ircd/m_rehash.c (mo_rehash): replace ugly #ifdef conditional
523         checks with HasPriv check
524
525         * ircd/m_opmode.c (mo_opmode): use HasPriv to check permissions;
526         use feature_bool to check if disabled
527
528         * ircd/m_oper.c (m_oper): set oper priviliges
529
530         * ircd/m_mode.c (m_mode): replace #ifdef conditional with HasPriv
531         check
532
533         * ircd/m_kill.c (mo_kill): use HasPriv checks to determine if we
534         can kill
535
536         * ircd/m_kick.c (m_kick): replace #ifdef conditional with HasPriv
537         check
538
539         * ircd/m_jupe.c (mo_jupe): rework permissions checking structure;
540         use feature_bool to check if disabled
541
542         * ircd/m_join.c (m_join): remove BADCHAN conditional; replace
543         #ifdef conditional with a HasPriv check
544
545         * ircd/m_gline.c (mo_gline): rework permissions checking
546         structure; use feature_bool to check if any part is disabled
547
548         * ircd/m_die.c: replace ugly #ifdef conditionals with HasPriv
549         check; remove dead code
550
551         * ircd/m_clearmode.c: use feature_bool() to detect if we're
552         disabled; use HasPriv to figure out what we're permitted to do;
553         only allow clearmode on moded channels
554
555         * ircd/ircd_features.c: define various features; use HasPriv to
556         verify permissions to set/reset
557
558         * ircd/gline.c (gline_add): use HasPriv instead of #ifdef
559         conditionals
560
561         * ircd/client.c (client_set_privs): function to set an oper's
562         privileges
563
564         * ircd/channel.c: use HasPriv calls instead of #ifdef conditionals
565
566         * include/whocmds.h: deconditionalize several macros and
567         substitute appropriate calls to HasPriv()
568
569         * include/s_debug.h: get rid of global serveropts[]; define new
570         function debug_serveropts() to build that string on the fly
571
572         * include/ircd_features.h: define some features
573
574         * include/client.h: add privs member to struct Connection; define
575         various priviledges
576
577         * include/channel.h: no longer using IsOperOnLocalChannel; remove
578         conditional of MAGIC_OPER_OVERRIDE on OPER_WALK_THROUGH_LMODES
579
580         * doc/Configure.help: remove help information for deprecated
581         options
582
583         * config/config-sh.in: remove certain deprecated options having to
584         do with what opers can and cannot do--first stage in moving
585         compile-time constants into the .conf
586
587 2000-12-16  Isomer <Isomer@coders.net>
588         * ircd/parse.c: detect if the prefix is missing and try and recover
589         instead of coring.
590
591 2000-12-15  Kevin L. Mitchell  <klmitch@mit.edu>
592
593         * ircd/ircd_log.c: found and fixed some bugs in the debug logging
594         code that would sometimes result in the log file not being
595         reopened--which meant that a user could connect and get the
596         logging output--oops
597
598         * ircd/Makefile.in: run make depend...
599
600         * ircd/s_stats.c: get rid of report_feature_list()
601
602         * ircd/s_err.c: add the 'bad value' error message, shift error
603         messages over somewhat
604
605         * ircd/s_debug.c (debug_init): call log_debug_init with the
606         use_tty flag
607
608         * ircd/s_conf.c (read_configuration_file): unmark features before
609         reading the config file, then reset unmarked features after
610         reading the config file
611
612         * ircd/m_stats.c: use feature_report() instead of
613         report_feature_list()
614
615         * ircd/ircd_log.c: fix log_debug_file (bogus assertion); add
616         special 'mark' flags and use them; add the stuff needed by the
617         features API
618
619         * ircd/ircd_features.c: rework the features API and add gobs of
620         comments to try to explain what some of these complex functions
621         are actually doing
622
623         * include/s_stats.h: get rid of report_feature_list(); use
624         feature_report() instead
625
626         * include/numeric.h: added a new error message and shifted old
627         values over some--this is, after all, an alpha
628
629         * include/ircd_log.h: log_debug_init now takes an integer to tell
630         it if it should be using the tty; added a couple of functions
631         required by the features API
632
633         * include/ircd_features.h: add an enum and some more functions to
634         flesh out the feature API--it should now be possible to put all
635         those compile-time constants in the config file!
636
637         * ircd/send.c: got the direction of the assert incorrect...
638
639         * ircd/send.c: implement the efficiency of flush_connections by
640         creating a linked list of struct Connection's with queued data;
641         also get rid of flush_sendq_except and make sure to yank
642         connections out of the list when their sendQs become empty (notice
643         the assertion in flush_connections!)
644
645         * ircd/s_bsd.c (close_connection): must yank the Connection out of
646         the sendq list
647
648         * ircd/list.c (dealloc_connection): must yank the Connection out
649         of the sendq list
650
651         * ircd/dbuf.c (dbuf_put): call flush_connections instead of the
652         deprecated flush_sendq_except
653
654         * ircd/client.c: define a couple new helper functions for sendq
655         threading--this will make the flush_connections function in send.c
656         considerably more efficient by creating a linked list of
657         Connections that have queued data to send
658
659         * include/send.h: remove flush_sendq_except, as it's not used
660         anymore
661
662         * include/client.h: declare a couple new helper functions for the
663         sendq threading system
664
665 2000-12-14  Kevin L. Mitchell  <klmitch@mit.edu>
666
667         * ircd/m_ison.c (m_ison): Apply Diane Bruce's patch to make ISON
668         parse all arguments
669
670         * ircd/s_debug.c (count_memory): modify to report for clients and
671         connections, not local clients and remote clients
672
673         * ircd/list.c: fiddle with the client-fiddling functions to take
674         into account the divorce of struct Connection from struct Client
675
676         * ircd/ircd.c: define a struct Connection for me, initialize it,
677         and link it into the right place (ewww, globals!)
678
679         * include/client.h: remove CLIENT_{LOCAL,REMOTE}_SIZE; split
680         struct Client into struct Client and struct Connection; redefine
681         local-portion accessor macros to go through struct Client to the
682         struct Connection; define struct Connection accessor macros
683
684 2000-12-13  Kevin L. Mitchell  <klmitch@mit.edu>
685
686         * ircd/whowas.c: missed a couple of accesses to a struct Client
687
688         * ircd/uping.c: missed a couple of accesses to a struct Client
689
690         * ircd/send.c: missed a couple of accesses to a struct Client
691
692         * ircd/s_user.c: missed a couple of accesses to a struct Client
693
694         * ircd/s_misc.c: missed a couple of accesses to a struct Client
695
696         * ircd/s_conf.c: missed a couple of accesses to a struct Client
697
698         * ircd/s_bsd.c: missed a couple of accesses to a struct Client
699
700         * ircd/s_auth.c: missed a couple of accesses to a struct Client
701
702         * ircd/res.c: missed a couple of accesses to a struct Client
703
704         * ircd/parse.c: missed a couple of accesses to a struct Client
705
706         * ircd/m_whois.c: use new accessor macros for struct Client
707
708         * ircd/m_who.c: use new accessor macros for struct Client
709
710         * ircd/m_wallchops.c: use new accessor macros for struct Client
711
712         * ircd/m_version.c: use new accessor macros for struct Client
713
714         * ircd/m_userip.c: use new accessor macros for struct Client
715
716         * ircd/m_userhost.c: use new accessor macros for struct Client
717
718         * ircd/m_user.c: use new accessor macros for struct Client
719
720         * ircd/m_uping.c: use new accessor macros for struct Client
721
722         * ircd/m_trace.c: use new accessor macros for struct Client
723
724         * ircd/m_topic.c: use new accessor macros for struct Client
725
726         * ircd/m_time.c: use new accessor macros for struct Client
727
728         * ircd/m_stats.c: use new accessor macros for struct Client
729
730         * ircd/m_squit.c: use new accessor macros for struct Client
731
732         * ircd/m_silence.c: use new accessor macros for struct Client
733
734         * ircd/m_server.c: use new accessor macros for struct Client;
735         remove dead code
736
737         * ircd/m_rpong.c: use new accessor macros for struct Client
738
739         * ircd/m_rping.c: use new accessor macros for struct Client
740
741         * ircd/m_quit.c: use new accessor macros for struct Client
742
743         * ircd/m_privmsg.c: use new accessor macros for struct Client
744
745         * ircd/m_pong.c: use new accessor macros for struct Client; remove
746         dead code
747
748         * ircd/m_ping.c: use new accessor macros for struct Client
749
750         * ircd/m_pass.c: use new accessor macros for struct Client
751
752         * ircd/m_part.c: use new accessor macros for struct Client
753
754         * ircd/m_oper.c: use new accessor macros for struct Client
755
756         * ircd/m_notice.c: use new accessor macros for struct Client
757
758         * ircd/m_nick.c: use new accessor macros for struct Client
759
760         * ircd/m_names.c: use new accessor macros for struct Client
761
762         * ircd/m_mode.c: use new accessor macros for struct Client
763
764         * ircd/m_map.c: use new accessor macros for struct Client
765
766         * ircd/m_list.c: use new accessor macros for struct Client
767
768         * ircd/m_links.c: use new accessor macros for struct Client;
769         remove some dead code
770
771         * ircd/m_kill.c: use new accessor macros for struct Client; remove
772         some dead code
773
774         * ircd/m_kick.c: use new accessor macros for struct Client
775
776         * ircd/m_join.c: use new accessor macros for struct Client; remove
777         some dead code
778
779         * ircd/m_ison.c: use new accessor macros for struct Client
780
781         * ircd/m_invite.c: use new accessor macros for struct Client
782
783         * ircd/m_info.c: use new accessor macros for struct Client
784
785         * ircd/m_gline.c: use new accessor macros for struct Client
786
787         * ircd/m_error.c: use new accessor macros for struct Client
788
789         * ircd/m_create.c: use new accessor macros for struct Client
790
791         * ircd/m_connect.c: use new accessor macros for struct Client;
792         removed some dead code
793
794         * ircd/m_burst.c: use new accessor macros for struct Client
795
796         * ircd/m_away.c: use new accessor macros for struct Client
797
798         * ircd/m_admin.c: use new accessor macros for struct Client
799
800         * ircd/hash.c: missed a couple of accesses to a struct Client
801
802         * ircd/gline.c: missed a couple of accesses to a struct Client
803
804         * ircd/crule.c: missed a couple of accesses to a struct Client
805
806         * ircd/class.c: missed an access to a struct Client
807
808         * ircd/channel.c: missed a couple of accesses to a struct Client
809
810         * ircd/IPcheck.c: missed an access to a struct Client
811
812         * include/querycmds.h: fix a couple of stats macros to use
813         structure accessor macros
814
815         * include/client.h: change structure member names to highlight any
816         places in the code I've missed
817
818 2000-12-12  Kevin L. Mitchell  <klmitch@mit.edu>
819
820         * ircd/whowas.c: use new struct Client accessor macros
821
822         * ircd/whocmds.c: use new struct Client accessor macros
823
824         * ircd/send.c: use new struct Client accessor macros
825
826         * ircd/s_user.c: use new struct Client accessor macros; removed
827         some dead code
828
829         * ircd/s_serv.c: use new struct Client accessor macros; removed
830         some dead code
831
832         * ircd/s_numeric.c: use new struct Client accessor macros
833
834         * ircd/s_misc.c: use new struct Client accessor macros
835
836         * ircd/s_debug.c: use new struct Client accessor macros
837
838         * ircd/s_conf.c: use new struct Client accessor macros
839
840         * ircd/s_bsd.c: use new struct Client accessor macros
841
842         * ircd/s_auth.c: use new struct Client accessor macros
843
844         * ircd/parse.c: use new struct Client accessor macros
845
846         * ircd/packet.c: use new struct Client accessor macros
847
848         * ircd/numnicks.c: use new struct Client accessor macros
849
850         * ircd/motd.c: use new struct Client accessor macros
851
852         * ircd/listener.c: use new struct Client accessor macros
853
854         * ircd/list.c: use new struct Client accessor macros
855
856         * ircd/jupe.c: use new struct Client accessor macros
857
858         * ircd/ircd_snprintf.c: use new struct Client accessor macros
859
860         * ircd/ircd_reply.c: use new struct Client accessor macros
861
862         * ircd/ircd_relay.c: use new struct Client accessor macros
863
864         * ircd/ircd.c: use new struct Client accessor macros
865
866         * ircd/gline.c: catch some instances of me.<stuff> I missed
867         previously
868
869         * ircd/client.c: use cli_ instead of con_
870
871         * ircd/class.c: use cli_ instead of con_
872
873         * ircd/channel.c: use cli_ instead of con_
874
875         * ircd/IPcheck.c: use cli_ instead of con_; catch some instances
876         of me.<stuff> I missed previously
877
878         * include/client.h: use cli_ instead of con_...seemed like a good
879         idea at the time *shrug*
880
881 2000-12-11  Kevin L. Mitchell  <klmitch@mit.edu>
882
883         * ircd/hash.c: use struct Client accessor macros
884
885         * ircd/gline.c: use struct Client accessor macros
886
887         * ircd/crule.c: use struct Client accessor macros
888
889         * ircd/client.c: use struct Client accessor macros; remove some
890         dead code
891
892         * ircd/class.c: use struct Client accessor macros
893
894         * ircd/channel.c: use struct Client accessor macros; remove some
895         dead code
896
897         * ircd/IPcheck.c: use struct Client accessor macros
898
899         * include/numnicks.h: use struct Client accessor macros
900
901         * include/client.h: first step to divorcing struct Client and
902         struct Connection--define accessor macros and use them
903
904         * ircd/gline.c: When Uworld removed Uworld-set G-lines, only the
905         uplink would remove them.  This is because the removal protocol
906         message wasn't being sent to the uplinks.  This is fixed by fixing
907         propagate_gline() to send the proper number of arguments depending
908         on whether or not we're adding or deleting the Uworld gline, and
909         by having gline_deactivate() make sure to turn off the active bit
910         and call propagate_gline() if it's a Uworld gline
911
912 2000-12-10  Kevin L. Mitchell  <klmitch@mit.edu>
913
914         * ircd/os_generic.c: make sure IOV_MAX gets defined, just in case
915
916         * ircd/os_bsd.c: apparently BSD doesn't have IOV_MAX defined
917         anywhere intelligent...
918
919 2000-12-09  Kevin L. Mitchell  <klmitch@mit.edu>
920
921         * ircd/send.c (send_queued): call deliver_it with appropriate
922         arguments
923
924         * ircd/s_serv.c: reorder a couple of headers--cosmetic
925
926         * ircd/s_bsd.c (deliver_it): make deliver_it work with a struct
927         MsgQ
928
929         * ircd/os_solaris.c (os_sendv_nonb): function for calling writev
930         with appropriate iovec
931
932         * ircd/os_linux.c (os_sendv_nonb): function for calling writev
933         with appropriate iovec
934
935         * ircd/os_generic.c (os_sendv_nonb): function for calling writev
936         with appropriate iovec
937
938         * ircd/os_bsd.c (os_sendv_nonb): function for calling writev with
939         appropriate iovec
940
941         * ircd/msgq.c (msgq_mapiov): add a len_p argument for totalling up
942         exactly how much we're trying to write out to the fd
943
944         * include/s_bsd.h: make deliver_it take a struct MsgQ
945
946         * include/msgq.h: add a len_p argument to msgq_mapiov to help
947         detect short writes that indicate possible socket blocking
948
949         * include/ircd_osdep.h: declare os_sendv_nonb()
950
951         * ircd/channel.c (modebuf_mode): don't add empty modes...
952
953 2000-12-08  Kevin L. Mitchell  <klmitch@mit.edu>
954
955         * include/send.h: add prio argument to send_buffer to select
956         between normal and priority queues
957
958         * ircd/s_user.c (send_user_info): add prio argument to send_buffer
959         call
960
961         * ircd/m_ison.c (m_ison): add prio argument to send_buffer call
962
963         * ircd/ircd_reply.c (send_reply): add prio argument to send_buffer
964         call
965
966         * ircd/channel.c (send_channel_modes): add prio argument to
967         send_buffer call
968
969         * ircd/send.c (send_buffer): add a prio argument to select the
970         priority queue; update send.c functions to use it
971
972         * ircd/msgq.c (msgq_add): remove msgq_prio; fold msgq_link and
973         msgq_add; add a prio argument to msgq_add to select the priority
974         queue
975
976         * include/msgq.h: remove msgq_prio; add a prio argument to
977         msgq_add
978
979         * ircd/send.c: remove sendbuf; remove GODMODE code; switch to
980         using msgq functions instead of dbuf functions; remove old, dead
981         sendto_* functions; redo send_buffer to take a struct MsgBuf;
982         rework sendcmdto_* functions to make use of the new struct MsgBuf
983
984         * ircd/s_user.c: remove hunt_server; restructure send_user_info to
985         make appropriate use of struct MsgBuf
986
987         * ircd/s_debug.c (count_memory): count memory used by the MsgQ
988         system and report it
989
990         * ircd/s_conf.c (read_configuration_file): use
991         sendto_opmask_butone instead of the now dead sendto_op_mask
992
993         * ircd/s_bsd.c: switch to using appropriate MsgQLength and other
994         calls on sendQ
995
996         * ircd/parse.c (parse_server): get rid of a piece of GODMODE code
997
998         * ircd/msgq.c: add msgq_append and msgq_bufleft; fix a bug in
999         msgq_clean
1000
1001         * ircd/m_version.c: fix spelling in comments marking dead code
1002
1003         * ircd/m_userip.c (userip_formatter): restructure to make use of
1004         struct MsgBuf
1005
1006         * ircd/m_userhost.c (userhost_formatter): restructure to make use
1007         of struct MsgBuf
1008
1009         * ircd/m_stats.c: use MsgQLength on a sendQ
1010
1011         * ircd/m_settime.c: use MsgQLength instead of DBufLength on a
1012         sendQ; mark a piece of dead code
1013
1014         * ircd/m_names.c: use send_reply instead of sendto_one
1015
1016         * ircd/m_mode.c: use new mode; remove old dead code
1017
1018         * ircd/m_ison.c (m_ison): restructure to make use of struct MsgBuf
1019
1020         * ircd/m_burst.c: use BUFSIZE instead of IRC_BUFSIZE; remove old
1021         dead code
1022
1023         * ircd/listener.c (accept_connection): use sendto_opmask_butone
1024         instead of sendto_op_mask
1025
1026         * ircd/list.c (free_client): use MsgQClear to clear sendQ
1027
1028         * ircd/ircd_reply.c: remove send_error_to_client; restructure
1029         send_reply to make use of struct MsgBuf
1030
1031         * ircd/dbuf.c (dbuf_put): remove argument to flush_sendq_except,
1032         since its no longer used (at least currently)
1033
1034         * ircd/channel.c: restructure send_channel_modes to make use of
1035         struct MsgBuf; remove set_mode, add_token_to_sendbuf, cancel_mode,
1036         and send_hack_notice; use BUFSIZE instead of IRC_BUFSIZE
1037
1038         * ircd/Makefile.in: add msgq.c to list of sources; run make depend
1039
1040         * ircd/IPcheck.c: use sendcmdto_one instead of sendto_one
1041
1042         * include/send.h: send_buffer now takes a struct MsgBuf * instead
1043         of a char *; flush_sendq_except now takes no arguments, as sendq
1044         flushing currently only happens in dbuf.h and sendQ is a struct
1045         MsgQ; remove prototypes for a lot of old sendto_* functions that
1046         aren't used anymore; remove sendbuf and IRC_BUFSIZE--the former is
1047         no longer needed, and the latter is identical to BUFSIZE in
1048         ircd_defs.h
1049
1050         * include/s_user.h: make InfoFormatter take a struct MsgBuf*
1051         instead of a char *; also make it return void, instead of char *
1052
1053         * include/msgq.h: add msgq_append and msgq_bufleft functions
1054
1055         * include/client.h: use a struct MsgQ instead of a struct DBuf for
1056         sendq
1057
1058         * doc/Configure.help: Remove help for compile-time options that
1059         have gone away
1060
1061         * config/config-sh.in: remove CONFIG_NEWMODE
1062
1063         * ircd/m_server.c (mr_server): don't send server IPs in any server
1064         notices
1065
1066         * ircd/msgq.c (msgq_vmake): add \r\n to messages
1067
1068 2000-12-07  Kevin L. Mitchell  <klmitch@mit.edu>
1069
1070         * include/msgq.h: declare the MsgQ API
1071
1072         * ircd/msgq.c: implementation of new MsgQ system
1073
1074 2000-12-06  Kevin L. Mitchell  <klmitch@mit.edu>
1075
1076         * ircd/ircd_features.c: #include was supposed to be for
1077           ircd_features.h, not features.h--missed when I had to do a
1078           rename because of namespace collision
1079
1080 2000-12-05  Greg Sikorski <gte@atomicrevs.demon.co.uk>
1081         * ircd/m_topic.c: Added missing braces that caused all remote
1082           topics to be ignored.
1083
1084 2000-12-04  Kevin L. Mitchell  <klmitch@mit.edu>
1085
1086         * ircd/m_create.c: I'm tired of the exit_client warning :)
1087         (ms_create): discovered that exit_client() was being called with
1088         too few arguments
1089
1090         * ircd/s_misc.c (exit_client): remove all dependance on
1091         FNAME_USERLOG, since that's now gone; log only to LS_USER
1092
1093         * ircd/s_debug.c: USE_SYSLOG no longer means anything
1094
1095         * ircd/m_oper.c (m_oper): no longer log to LS_OPERLOG--we already
1096         log to LS_OPER
1097
1098         * ircd/m_kill.c: no longer conditionalize on SYSLOG_KILL
1099
1100         * ircd/ircd_log.c: remove LS_OPERLOG, LS_USERLOG
1101
1102         * include/ircd_log.h: remove LS_OPERLOG, LS_USERLOG--they serve
1103         the same purpose as LS_USER and LS_OPER
1104
1105         * config/config-sh.in: remove no longer relevant log config
1106         variables
1107
1108         * ircd/uping.c (uping_init): use log_write instead of ircd_log
1109
1110         * ircd/s_misc.c (exit_client): use log_write instead of ircd_log
1111
1112         * ircd/s_conf.c: use log_write instead of ircd_log
1113
1114         * ircd/s_bsd.c (report_error): use log_write instead of ircd_log
1115
1116         * ircd/s_auth.c (timeout_auth_queries): use log_write instead of
1117         ircd_log
1118
1119         * ircd/res.c (send_res_msg): use log_write instead of ircd_log
1120
1121         * ircd/m_who.c: use log_write instead of write_log; no longer
1122         conditionalize on WPATH; mark dead ircd_log calls
1123
1124         * ircd/m_uping.c: mark dead ircd_log call
1125
1126         * ircd/m_server.c (mr_server): use log_write instead of ircd_log
1127
1128         * ircd/m_restart.c: use log_write instead of ircd_log; mark dead
1129         ircd_log calls
1130
1131         * ircd/m_rehash.c (mo_rehash): use log_write instead of ircd_log
1132
1133         * ircd/m_oper.c: use log_write instead of ircd_log; no longer
1134         conditionalize on FNAME_OPERLOG; mark dead ircd_log calls
1135
1136         * ircd/m_kill.c: mark dead ircd_log calls
1137
1138         * ircd/m_connect.c: use log_write instead of ircd_log; mark dead
1139         ircd_log
1140
1141         * ircd/m_clearmode.c: use log_write instead of write_log; no
1142         longer conditionalize on OPATH
1143
1144         * ircd/jupe.c: use log_write instead of write_log; no longer
1145         conditionalize on JPATH
1146
1147         * ircd/ircd_log.c: add USER subsystem; remove ircd_log() compat
1148         function; fix a couple of bugs
1149
1150         * ircd/ircd_alloc.c: fixed a comment
1151
1152         * ircd/ircd.c: use log_write instead of ircd_log; fold server
1153         notice generation in a couple of cases
1154
1155         * ircd/gline.c: use log_write instead of write_log; no longer
1156         conditionalize on GPATH
1157
1158         * ircd/channel.c (modebuf_flush_int): use log_write instead of
1159         write_log; no longer conditionalize on OPATH
1160
1161         * ircd/Makefile.in: run make depend, since dependencies have
1162         changed
1163
1164         * doc/example.conf: add system USER to documentation
1165
1166         * include/ircd_log.h: add system USER; remove old ircd_log()
1167         declarations
1168
1169 2000-12-04  Isomer <isomer@coders.net>
1170         * ircd/m_names.c: Add NAMES_EON to do_names to say add a
1171         'end_of_names' reply when done.
1172         * ircd/m_join.c: use NAMES_EON as mentioned above
1173
1174 2000-12-01  net  <simms@LUCIDA.QC.CA>
1175
1176         * ircd/motd.c: add a freelist for struct Motds
1177
1178 2000-11-30  Kevin L. Mitchell  <klmitch@mit.edu>
1179
1180         * ircd/s_stats.c (report_feature_list): report features--only
1181         local opers can see logging configuration, since it doesn't really
1182         mean anything to users
1183
1184         * ircd/s_err.c: add reply messages for new feature subsystem
1185
1186         * ircd/s_conf.c: add F lines to .conf
1187
1188         * ircd/parse.c: add the message descriptions for /set, /reset, and
1189         /get
1190
1191         * ircd/m_stats.c: add /stats f
1192
1193         * ircd/m_set.c (mo_set): implement /set
1194
1195         * ircd/m_reset.c (mo_reset): implement /reset
1196
1197         * ircd/m_rehash.c: /rehash m now flushes MOTD cache, and /rehash l
1198         reopens log files (for log file rotation)
1199
1200         * ircd/m_get.c (mo_get): implement /get
1201
1202         * ircd/ircd_log.c: use int instead of void return value; add
1203         log_report_features() and log_canon(); fix a function that
1204         disappears if DEBUGMODE not #define'd
1205
1206         * ircd/ircd_features.c: functions to manipulate feature settings
1207         either from the config file or with the new /set, /reset, and /get
1208         commands
1209
1210         * ircd/Makefile.in: add new .c files, run make depend
1211
1212         * include/s_stats.h: declare report_feature_list() (/stats f
1213         handler)
1214
1215         * include/numeric.h: add RPL_STATSFLINE, RPL_FEATURE,
1216         ERR_NOFEATURE, ERR_BADLOGTYPE, ERR_BADLOGSYS, and ERR_BADLOGVALUE
1217         reply numerics
1218
1219         * include/msg.h: add defines for SET, RESET, and GET
1220
1221         * include/ircd_log.h: add a function to canonicalize subsystem
1222         names; change some void return values to int
1223
1224         * include/ircd_features.h: new features subsystem handles all the
1225         manipulation of special features, like log files
1226
1227         * include/handlers.h: declare new mo_{s,res,g}et message handlers
1228         for fiddling with features run-time
1229
1230         * include/client.h (SNO_DEFAULT): don't set SNO_DEBUG by default;
1231         seemed like a good idea at the time...
1232
1233         * doc/example.conf: document new F lines
1234
1235 2000-11-29  Kevin L. Mitchell  <klmitch@mit.edu>
1236
1237         * ircd/s_debug.c: rewrite debug_init() and vdebug() in terms of
1238         new logging functions, which have special support for the debug
1239         log; added loop detection to vdebug(), so that I can
1240         sendto_opmask_butone() from log_vwrite() without incurring another
1241         call to vdebug()
1242
1243         * ircd/s_conf.c (rehash): call log_reopen() from rehash routine;
1244         this allows log file rotations
1245
1246         * ircd/m_kill.c: call log_write_kill() instead of ircd_log_kill()
1247
1248         * ircd/ircd_log.c: much more work fleshing out the interface;
1249         removed old interface; included backwards-compat ircd_log()
1250         function that logs to subsystem LS_OLDLOG
1251
1252         * ircd/ircd.c: switch to new log_init()/log_close()/log_reopen()
1253         functions
1254
1255         * include/ircd_log.h: include stdarg.h for va_list; move ordering
1256         warning to top of file; fill out LogSys enum; declare new
1257         log_debug_init(), log_vwrite(), log_write_kill(), and
1258         log_[sg]et_*() functions; add flags argument to log_write();
1259         defined flags to inhibit various logging actions
1260
1261         * include/client.h: added support for new SNO_DEBUG, enabled only
1262         if DEBUGMODE is defined
1263
1264 2000-11-28  Kevin L. Mitchell  <klmitch@mit.edu>
1265
1266         * ircd/ircd_log.c: make sure the various LOG_* constants are
1267         defined (probably not needed, since #include <syslog.h> isn't
1268         conditional); various static data needed for the new logging
1269         functions; definitions of new logging functions
1270
1271         * include/ircd_log.h: new LogSys enum, declarations for part of
1272         new logging API
1273
1274         * ircd/motd.c: we were setting type to MOTD_CLASS unconditionally,
1275         which was of course stupid; switched to using switch/case in
1276         initialization in motd_create(); zero the MotdList.other pointer
1277         from motd_clear()
1278
1279         * ircd/ircd.c (main): motd_init() has to come before init_conf(),
1280         or we overwrite init_conf()'s hard work with respect to T-lines
1281
1282 2000-11-27  Kevin L. Mitchell  <klmitch@mit.edu>
1283
1284         * ircd/s_stats.c: comment out report_motd_list and include a
1285         reference to motd_report()
1286
1287         * ircd/s_conf.c: rip out the old MOTD manipulation functions; call
1288         motd_add() from the conf parser; call motd_clear() from the rehash
1289         routine; remove the no longer needed memory clearing and reloading
1290         stuff from the rehash service routine
1291
1292         * ircd/motd.c: loads new API, including static internal functions
1293         to do allocation/deallocation, etc.
1294
1295         * ircd/m_stats.c: use new motd_report() instead of
1296         report_motd_list()
1297
1298         * ircd/m_motd.c: use new syntax for motd_send()
1299
1300         * ircd/ircd.c: use new motd_init() function
1301
1302         * ircd/Makefile.in (SRC): forgot to add motd.c to SRC in
1303         Makefile.(in); also ran make depend
1304
1305         * include/motd.h: don't need config.h, but now do need time.h;
1306         define new structures and constants; redefine old API and define
1307         new functions
1308
1309 2000-11-22  Kevin L. Mitchell  <klmitch@mit.edu>
1310
1311         * ircd/s_user.c (register_user): use motd_signon() instead of
1312         calling m_motd; much cleaner this way
1313
1314         * ircd/motd.c: write the new motd_* stuff to make MOTD handling
1315         less of a crock
1316
1317         * ircd/m_motd.c: rewrite m{,s}_motd to call out to new motd_*
1318         functions
1319
1320         * include/motd.h: define new MOTD API stuff
1321
1322 2000-11-20  Kevin L. Mitchell  <klmitch@mit.edu>
1323
1324         * ircd/ircd_reply.c (protocol_violation): rewrite
1325         protocol_violation so it'll actually work
1326
1327         oh, yeah, use %s -> cptr->name, instead of %c -> cptr, so we get
1328         the client's real name in there.
1329
1330         * ircd/m_motd.c (m_motd): Iso's addition of get_client_class(sptr)
1331         resulted in core dumps if NODEFAULTMOTD is defined, because m_motd
1332         gets called from register_user with a NULL sptr.  This is probably
1333         a design problem, but this bandaid will do for now...
1334
1335 2000-11-19  Isomer <isomer@coders.net>
1336         * ircd/ircd_reply.c: added 'protocol_violation', thus alerting us
1337         to problems in the server<->server protocol.
1338
1339         * ircd/m_connect.c: allow remote connects with a port of '0'
1340         meaning to use the port in the config file.
1341
1342         * ircd/m_create.c: Enable hacking protection, lets see how far we
1343         get.
1344
1345         * ircd/m_error.c: The RFC says never accept ERROR from unreg'd
1346         clients, so we don't any more.
1347
1348         * ircd/m_kill.c: The kill path is now made up of numnicks of servers,
1349         and the user@host is displayed of the victim.
1350
1351         * ircd/m_map.c: reloaded 'dump_map'.
1352
1353         * ircd/m_trace.c: allow per class T:
1354
1355         * ircd/m_stats.c: allow local opers /remote stats anywhere on the 'net.
1356
1357 2000-11-17  Isomer <isomer@coders.net>
1358
1359         * ircd/m_topic.c: Fixed bug where we'd only send to clients topics
1360         that were the *same* instead of different.  Oh the embarrasment!
1361
1362         * ircd/IPcheck.c: Merged net's fix.
1363
1364 2000-11-02  Kevin L. Mitchell  <klmitch@mit.edu>
1365
1366         * ircd/m_whois.c: remove compiler warning by adding a newline to
1367         end of file
1368
1369         * ircd/m_names.c: moved the flags up to s_user.h
1370
1371         * ircd/m_join.c: call do_names instead of m_names; restructure
1372         ms_join to never transmute a JOIN into a CREATE, but use the TS in
1373         the JOIN (if present) to timestamp the channel
1374
1375         * ircd/channel.c: send JOINs individually, instead of grouping
1376         them, so that we can send the channel's creation time
1377
1378         * include/s_user.h: declare do_names()
1379
1380 2000-10-30  Isomer <isomer@coders.net>
1381         * ircd/m_oper.c: Fixed warning
1382
1383 2000-10-30  Isomer <isomer@coders.net>
1384         * ircd/m_oper.c: Fixed over agressive cut and no paste
1385
1386 2000-10-30  Isomer <isomer@coders.net>
1387
1388         * ircd/m_topic.c: Restructured, fixed bug where topics on local
1389         channels are propergated (I forget who pointed this out to me, but
1390         thanks anyway).  Also to save bandwidth don't send the topic to
1391         users if the topic is already the same on the server (but still
1392         propergate to other servers).  X/W's "autotopic" feature must
1393         chew a lot of bandwidth, hopefully this will help reduce this.
1394
1395         * doc/rfc1459.rfc: Updated documentation on /topic.
1396
1397         * ircd/listener.c: snotice warnings about failed accept()'s
1398         potentially warning admins that they're running out of fd's.
1399
1400         * ircd/stats.c, ircd/class.c: Removed /stats v, added number of
1401         people in a class in /stats y
1402
1403         * ircd/m_create.c: Checks for timewarp hacking and squit's
1404         evil servers. (currently disabled)
1405         
1406
1407 2000-10-30  net <simms@lucida.qc.ca>
1408         
1409         * ircd/gline.c: Fixed various bugs Isomer left behind.
1410
1411 2000-10-26  Kevin L. Mitchell  <klmitch@mit.edu>
1412
1413         * ircd/m_join.c (m_join): reply on attempt to join a BADCHANed
1414         channel is now ERR_BANNEDFROMCHAN instead of ERR_BADCHANNAME
1415
1416 2000-10-24  Kevin L. Mitchell  <klmitch@mit.edu>
1417
1418         * ircd/channel.c: ok, now last mode rules; mode +ps will always
1419         result in +s (and won't send a mode if the channel is already +s);
1420         mode +sp will always result in +p; -n+n on a +n channel results in
1421         no mode change; -n+n on a -n channel results in a +n mode change;
1422         etc.
1423
1424 2000-10-23  Kevin L. Mitchell  <klmitch@mit.edu>
1425
1426         * ircd/channel.c: add "add" and "del" elements to ParseState to
1427         avoid not-too-pretty -p+s when +s is sufficient; fix a bug in
1428         mode_parse_limit that caused it to clear all channel modes
1429         prematurely; restructure mode_parse_mode to avoid calling
1430         modebuf_mode too early (ties in with first mentioned change);
1431         better logic for +p/+s mutual exclusivity; initialize "add" and
1432         "del" elements in mode_parse; send simple modes down to
1433         modebuf_mode after the loop in mode_parse
1434
1435 2000-09-28  Greg Sikorski <gte@atomicrevs.demon.co.uk>
1436         * ircd/m_names.c: Fixed a non-lethal logic error that 
1437         triggers an assert() in find_member_link while debugging.
1438         (Spotted by Maniac-).
1439 2000-09-19  Thomas Helvey <helveytw@home.com>
1440         * ircd/s_conf.c: move K:lines to their own list and data
1441         structures, add supporting code.
1442         * ircd/m_stats.c: cleanup stats processing a bit move
1443         kline listing code to a new function, haven't figured
1444         out where it goes yet tho'
1445         * ircd/s_stats.c: added K:line bulk lister
1446         * include/s_conf.h: added new DenyConf struct
1447         * *[ch]: fixeup code that depended on changes
1448
1449 2000-09-17  Thomas Helvey <helveytw@home.com>
1450         * ircd/class.c: encapsulate class list
1451         * include/class.h: clean up classes
1452         * * fixup code that depended on changes
1453
1454 2000-09-17  Thomas Helvey <helveytw@home.com>
1455         * ircd/s_conf.c: add me to local conf
1456         * include/s_conf.h: move CONF_ME macro to chkconf.c
1457         * ircd/s_bsd.c: cleanup initialization, allow virtual host
1458         to be changed by rehash
1459
1460 2000-09-17  Thomas Helvey <helveytw@home.com>
1461         * include/class.h: add missing prototype
1462         * ircd/class.c: make argument to get_conf_class const
1463
1464 2000-09-17  Thomas Helvey <helveytw@home.com>
1465         * ircd/*.c: merged in changes from 2.10.10.pl12, cleanup
1466         merge conflicts.
1467         * ircd/*.h: merged in changes from 2.10.10.pl12, cleanup
1468         merge conflicts
1469
1470 2000-09-16  Thomas Helvey <helveytw@home.com>
1471         * ircd/s_conf.c: add code for server struct
1472         * ircd/client.c: copy of class.c sort of, new file for client
1473         specific operations, will move things here as appropriate,
1474         currently only one function is exported from here.
1475         * ircd/*.c: general logic cleanups, convert negatives to
1476         positives in places.
1477
1478 2000-09-16  Thomas Helvey <helveytw@home.com>
1479         * ircd/s_conf.c: add code for new crule data structs, strip quotes
1480         * ircd/crule.c: clean up scary casting a bit, type safety stuff
1481         * include/s_conf.h: add CRuleConf struct and support, remove
1482         unused constants
1483         * include/crule.h: type safety cleanups
1484         * ircd/*.c: fixup code that depended on stuff I changed
1485
1486 2000-09-15  Thomas Helvey <helveytw@home.com>
1487         * ircd/s_conf.c: start adding code for new conf data structs, changed
1488         listeners, admin line, motd lines, class lines. Move validate_hostent
1489         to resolver. General mayhem.
1490         * include/s_conf.h: new data structs and accessors
1491         * ircd/res.c: move validate_hostent here, rewrite, use regular
1492         expression for validation.
1493         * doc/example.conf: update docs for port
1494
1495 2000-09-14  Thomas Helvey <helveytw@home.com>
1496         * ircd/s_conf.c (conf_init): rewrite conf file parser, start to break
1497         up conf_init into managable chunks.
1498         * ircd/listener.c (set_listener_mask): fix logic bug core dump.
1499         * include/s_conf.h: add new data struct for local info (unwinding the mess).
1500
1501 2000-09-13  Thomas Helvey <helveytw@home.com>
1502         * ircd/list.c: put Clients in free lists, pre-allocate MAXCONNECTIONS
1503         local clients.
1504         * ircd/list.c: put SLinks in free lists
1505         * ircd/channel.c: put Memberships in free lists
1506         * ircd/ircd.c: rearrange initializations a bit in main
1507         Note: With these changes, ircd NEVER frees Clients, SLinks or
1508         Memberships. It will also rarely need to allocate new
1509         ones during net bursts and other disruptions. This should
1510         cut down on memory fragmentation a bit as well.
1511
1512 2000-08-30  Kevin L. Mitchell  <klmitch@mit.edu>
1513
1514         * ircd/m_names.c (do_names): pull-up from do_names fix in
1515         u2.10.10.pl11
1516
1517 2000-07-15  Perry Lorier       <Isomer@coders.net>
1518         * various: IP only k:'s and G:'s now do bit tests instead of two(!) 
1519                  match()'s.  Major Major cpu savings.  Also speed up the
1520                  other case slightly.  As a side effect you can now
1521                  k/Gline *@10.0.0.0/8.  I'll do bans tomorrow, it's nearing
1522                  3am.
1523
1524 2000-07-15  Perry Lorier       <Isomer@coders.net>
1525         * various: Fixed warnings after compiling on an alpha.
1526 2000-07-09  Perry Lorier       <Isomer@coders.net>
1527         * doc/ircd.8: Applied grammitical changes by Liandrin, applied
1528                       changes suggested by various other people.
1529         * ircd/IPcheck.c: More bug fixes.  Current problem appears to be
1530                         that it gets a corrupt entry somehow.
1531 2000-07-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
1532         * ircd/m_oper.c: Clean up compiler warning.
1533
1534 2000-07-08  Perry Lorier       <Isomer@coders.net>
1535         * doc/ircd.8: Updated the documentation, it was slightly out of date
1536                       being updated around 1989.
1537         * ircd/m_whois.c: Rewrote for clarity, and probably a bit more speed.
1538                           fixed a few minor glitches.
1539         * doc/rfc1459.unet: Updated.
1540         * ircd/IPcheck.c: Fixed more bugs.
1541         * ircd/s_bsd.c: We now keep track of servers we've conected.
1542
1543 2000-07-02  Perry Lorier       <Isomer@coders.net>
1544         * ircd/s_misc.c: Fixed remote IPcheck bug.  Ok, I'm a moron, so sue
1545                         me.  Thanks to Hektik, thanks thanks thanks thanks
1546                         thanks thanks thanks thanks thank thanks thank thanks
1547
1548 2000-07-01  Perry Lorier       <Isomer@coders.net>
1549         * ircd/s_conf.c: "Fixed" the "bug" where people would "evade" K:'s.
1550         * ircd/s_conf.c, include/IPcheck.h: Fixed compile warnings.
1551
1552 2000-06-22  Perry Lorier       <Isomer@coders.net>
1553         * ircd/IPcheck.c: Large chunks redone.
1554         * ircd/s_conf.c: Changes due to IPcheck - ONE nolonger supported,
1555                         single AND double digit limits are allowed now.
1556         * misc other: Changes to IPcheck.
1557
1558 2000-06-30  Perry Lorier       <Isomer@coders.net>
1559         * ircd/ircd.c: Fix command line parameter bugs.
1560
1561 2000-06-30  Perry Lorier       <Isomer@coders.net>
1562         * ircd/m_kill.c: Fixed bug with LOCAL_KILL_ONLY
1563         * ircd/m_nick.c: Tidied things up.
1564
1565 2000-06-12 Joseph Bongaarts <foxxe@trms.com>
1566         * ircd/m_stats.c: Iso forgot mo_stats when he added /stats v
1567         
1568 2000-05-29  Perry Lorier       <Isomer@coders.net>
1569         * ircd/m_stats.c: add /stats v to do only the last part of the /trace
1570         * ircd/IPcheck.c: Cosmetic change, if we meddle with it enough do
1571                         you think it'll get bored and fix itself?
1572
1573 2000-06-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
1574
1575         * ircd/m_names.c: Clean up compiler warnings.
1576
1577 2000-06-09  Kevin L. Mitchell  <klmitch@mit.edu>
1578
1579         * ircd/channel.c (mode_parse_client): don't send warning if
1580         there's not enough arguments for a +/-o/v; means the habit of
1581         doing "/mode #channel +oooooo bob" doesn't result in a bunch of
1582         error messages
1583
1584 2000-06-04  Greg Sikorski <gte@atomicrevs.demon.co.uk>
1585
1586         * ircd/m_names.c: Re-factor code to remove unneccessary
1587         GlobalChannelList iteration every time someone joins a channel.
1588
1589 2000-06-02  Kevin L. Mitchell  <klmitch@mit.edu>
1590
1591         * ircd/s_user.c: add struct Gline * argument to register_user;
1592         look up global glines and repropagate them if necessary; send
1593         acknowledgement of gline to remote servers when registering users
1594
1595         * ircd/s_serv.c (server_estab): don't send acknowledgement of
1596         local glines to remote servers; do send gline acknowledgement of
1597         bursted users
1598
1599         * ircd/m_user.c (m_user): pass new struct Gline * argument to
1600         register_user
1601
1602         * ircd/m_pong.c: pass new struct Gline * argument to register_user
1603
1604         * ircd/m_nick.c (ms_nick): document protocol change
1605
1606         * ircd/gline.c: support GLINE_LASTMOD
1607
1608         * include/s_user.h: add struct Gline * argument to register_user
1609
1610         * include/gline.h: add GLINE_LASTMOD to look up non-zero lastmods
1611
1612         * ircd/s_conf.c (find_kill): add unsigned int argument to
1613         gline_lookup()
1614
1615         * ircd/gline.c: add GLINE_GLOBAL to lookup or find only global
1616         glines; add unsigned int argument to gline_lookup()
1617
1618         * include/gline.h: add GLINE_GLOBAL flag; add unsigned int
1619         argument to gline_lookup()
1620
1621         * ircd/m_server.c: Resend jupe only when there is no %<lastmod>
1622         parameter, or when it falls out of bounds: see comments prior to
1623         call to jupe_resend(); call server_estab with struct Jupe
1624         parameter, so that we place the appropriate %<lastmod> in the
1625         appropriate place.
1626
1627         * ircd/s_serv.c (server_estab): send %<lastmod> for introduced
1628         server, as well as for servers when we're sending the BURST
1629
1630         * include/s_serv.h: add a struct Jupe * to the arguments for
1631         server_estab() so that we can send the appropriate lastmod
1632         parameter
1633
1634         * ircd/m_gline.c (ms_gline): actually, this should be the
1635         slightest bit more efficient...
1636
1637         * ircd/m_jupe.c (ms_jupe): actually, this should be the slightest
1638         bit more efficient...
1639
1640         * ircd/m_gline.c (ms_gline): inhibit GLINE processing resends
1641         during netburst
1642
1643         * ircd/m_jupe.c (ms_jupe): inhibit JUPE processing resends during
1644         netburst
1645
1646         * ircd/channel.c (joinbuf_join): really remove user from local
1647         channels
1648
1649 2000-05-29  Perry Lorier       <Isomer@coders.net>
1650         * ircd/m_names.c: Removed redundant space. 
1651         * ircd/s_bsd.c: Fixed incorrect syntax on ERROR line.
1652
1653 2000-05-18  Kevin L. Mitchell  <klmitch@mit.edu>
1654
1655         * ircd/m_burst.c (ms_burst): er...that should have been a ",", not
1656         a " "
1657
1658 2000-05-04  Kevin L. Mitchell  <klmitch@mit.edu>
1659
1660         * ircd/channel.c: replace bogus assertions with returns, which is
1661         logically correct; only wipe out limit/key if they were originally
1662         set in the first place; remove user from channel when doing a
1663         PARTALL; only send MODE +o for user CREATEing channel if user is
1664         not MyUser--CREATE will only be used if the channel did not
1665         originally exist, therefore we can assume no one local is on the
1666         channel anyway, and we don't exactly need for the user to see an
1667         explicit +o for themselves
1668
1669         * doc/readme.gline: describe the syntax of the GLINE command
1670
1671         * doc/readme.jupe: update to reflect a couple of changes to JUPE
1672
1673         * ircd/gline.c: don't propagate local changes
1674
1675         * ircd/jupe.c: don't propagate local changes
1676
1677         * ircd/m_gline.c (mo_gline): force local flag when deactivating
1678         glines with 0 lastmod
1679
1680         * ircd/gline.c (gline_deactivate): G-lines with zero lastmod time
1681         are now removed instead of being deactivated
1682
1683         * ircd/m_gline.c (ms_gline): make G-lines of the form "GLINE *
1684         -<mask>" be accepted
1685
1686         * ircd/channel.c (send_channel_modes): deal with one of the last
1687         vestiges of sendbuf
1688
1689         * ircd/m_burst.c (ms_burst): debugged ban processing; removed
1690         debugging hooks
1691
1692         * ircd/channel.c (modebuf_extract): remove debugging
1693         sendto_opmask_butone calls
1694
1695 2000-05-03  Kevin L. Mitchell  <klmitch@mit.edu>
1696
1697         * ircd/channel.c: support a couple of new flags to support using
1698         mode_parse; fix some bugs with 0 struct ModeBuf *; implementation
1699         of modebuf_extract to extract added flags for use by ms_burst
1700
1701         * include/channel.h: a couple of new flags to support using
1702         mode_parse inside ms_burst
1703
1704         * ircd/m_burst.c (ms_burst): brand new implementation of BURST
1705
1706         * ircd/m_endburst.c: add loop to processing of end_of_burst to
1707         free empty channels after the BURST is over.
1708
1709         * ircd/m_server.c: convert to use new send.c functions--I wanted
1710         to rewrite it from scratch, but the logic's pretty complex; I may
1711         still rewrite it, though...
1712
1713 2000-05-02  Thomas Helvey <tomh@inxpress.net>
1714
1715         * ircd/ircd.c: fix broken header include ordering
1716
1717 2000-05-02  Thomas Helvey <tomh@inxpress.net>
1718         
1719         * ircd/IPcheck.c: cleanups for ZenShadow's cleanups
1720         review emailed privately
1721
1722         * include/IPcheck.h: removed unneeded include
1723
1724 2000-05-02  Kevin L. Mitchell  <klmitch@mit.edu>
1725
1726         * ircd/s_user.c (hunt_server): throw in a comment so I know what
1727         the sendto_one is for
1728
1729         * include/querycmds.h (Count_unknownbecomesclient): convert to
1730         sendto_opmask_butone
1731
1732         * ircd/send.c: start removing dead code
1733
1734         * include/send.h: start removing dead code
1735
1736         * ircd/m_rping.c: convert to sendcmdto_one / send_reply /
1737         hunt_server_cmd
1738
1739         * ircd/m_rpong.c: convert to sendcmdto_one / send_reply
1740
1741 2000-05-01  Kevin L. Mitchell  <klmitch@mit.edu>
1742
1743         * ircd/m_stats.c: convert to sendcmdto_one / send_reply
1744
1745         * ircd/m_kick.c: Completely reimplement m_kick
1746
1747         * ircd/channel.c: send_user_joins removed; it was dead code,
1748         anyway...
1749
1750 2000-05-01  Perry Lorier <isomer@coders.net>
1751         * ircd/m_invite.c: Fix for the rest of m_invite.c, and again.
1752         * ircd/channels.c: My fix for the part problem.  Untested, probably
1753                 won't work.  Can't be much worse than the current problem.
1754                 it'll either work or core, take your pick.
1755
1756
1757 2000-04-30  Perry Lorier <isomer@coders.net>
1758         * config/config-sh.in: Fix for CONNEXIT
1759         * ircd/s_{user,misc}.c: Fix for CONNEXIT
1760         * ircd/m_invite.c: Fix for incorrectly numnickified invite.
1761                         (Kev: Want to come talk to me about this?)
1762
1763 2000-04-30  Steven M. Doyle <steven@doyle.net>
1764         * ircd/ircd.c
1765           - general cleanups and readability enhancements
1766           - rewrite of setuid/chroot code.
1767           - server will no longer run as root
1768           - -DPROFIL compile option removed
1769           - Fixed IPcheck API calls
1770  
1771         * config/config-sh.in
1772           - Fixed up chroot compile options
1773           - Added options for debug and profile compiles
1774  
1775         * config/gen.ircd.Makefile
1776           - Support for new debug/profile options
1777  
1778         * ircd/Makefile.in
1779           - Support for new debug/profile options
1780  
1781         * ircd/ircd_signal.c
1782           - Removed -DPROFIL
1783
1784         * include/IPcheck.h
1785           - Removed old API prototypes, added new ones
1786         
1787         * ircd/IPcheck.c
1788           - Readability cleanups (well, I -think-...)
1789           - Changed IPRegistryEntry.last_connect to a time_t.  The previously
1790             used unsigned short was probably causing interesting things after
1791             a client had been connected longer than about 65,535 seconds...
1792           - Removed old API functions.
1793
1794         * ircd/whocmds.c
1795           - Removed IPcheck.h include
1796         
1797         * Additionally modified IPcheck API calls in:
1798           - ircd/m_nick.c
1799           - ircd/m_auth.c
1800           - ircd/s_bsd.c
1801           - ircd/s_conf.c
1802           - ircd/s_misc.c
1803           - ircd/s_serv.c
1804           - ircd/s_user.c
1805         
1806         
1807 2000-04-30  Perry Lorier <isomer@coders.net>
1808         * ircd/s_bsd.c: Sigh. :)
1809         * ircd/m_mode.c: fix for modeless channels by poptix.
1810
1811 2000-04-29  Kevin L. Mitchell  <klmitch@mit.edu>
1812
1813         * ircd/m_join.c: reimplement JOIN in terms of struct JoinBuf
1814
1815         * ircd/channel.c (clean_channelname): make clean_channelname also
1816         truncate long channel names
1817
1818 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
1819
1820         * ircd/m_create.c: reimplement CREATE in terms of struct JoinBuf
1821
1822         * ircd/channel.c: implemented joinbuf_init, joinbuf_join,
1823         joinbuf_flush
1824
1825         * include/channel.h: definitions and declarations for the struct
1826         JoinBuf abstraction
1827
1828 2000-04-29  Perry Lorier <isomer@coders.net>
1829         * ircd/s_bsd.c: Ok, so I thought I compiled and tested this...
1830
1831 2000-04-29  Perry Lorier <isomer@coders.net>
1832         * ircd/s_bsd.c: Add debugging code to IPcheck
1833
1834 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
1835
1836         * include/ircd_reply.h (SND_EXPLICIT): use instead of RPL_EXPLICIT
1837
1838         * ircd/ircd_reply.c (send_reply): use SND_EXPLICIT instead of
1839         RPL_EXPLICIT
1840
1841         * ircd/m_userhost.c (m_userhost): add a dead code comment
1842
1843         * ircd/m_desynch.c: forgot one...
1844
1845         * ircd/m_rehash.c (mo_rehash): er, duplicates :)
1846
1847         * ircd/m_proto.c (proto_send_supported): just change a comment so
1848         it doesn't show up in my scans
1849
1850         * ircd/ircd_reply.c (send_reply): fix a slight bug...
1851
1852         * ircd/s_numeric.c (do_numeric): use new sendcmdto_* functions,
1853         kinda hackish...
1854
1855         * ircd/parse.c (parse_server): argument wrangling to make
1856         processing in do_numeric a little easier to deal with
1857
1858         * ircd/s_serv.c (server_estab): SERVER should come from
1859         acptr->serv->up, not &me
1860
1861         * ircd/m_lusers.c: accidentally left out sptr for a %C
1862
1863         * ircd/send.c: hack to support doing wallchops...
1864
1865         * ircd/m_whowas.c: convert to new send functions
1866
1867         * ircd/m_whois.c: convert to new send functions
1868
1869         * ircd/m_who.c: convert to new send functions
1870
1871         * ircd/m_wallops.c: convert to new send functions
1872
1873         * ircd/m_wallchops.c: convert to new send functions
1874
1875         * ircd/m_version.c: convert to new send functions
1876
1877         * ircd/m_userip.c: convert to new send functions
1878
1879         * ircd/m_userhost.c: convert to new send functions
1880
1881         * ircd/m_uping.c: convert to new send functions
1882
1883         * ircd/m_trace.c: convert to new send functions
1884
1885         * ircd/m_topic.c: convert to new send functions
1886
1887         * ircd/m_time.c: convert to new send functions
1888
1889         * ircd/m_squit.c: convert to new send functions
1890
1891         * ircd/m_silence.c: convert to new send functions
1892
1893         * ircd/m_settime.c: convert to new send functions
1894
1895         * ircd/m_restart.c: convert to new send functions
1896
1897         * ircd/m_rehash.c: convert to new send functions
1898
1899         * ircd/m_privmsg.c: convert to new send functions
1900
1901         * ircd/m_pong.c: convert to new send functions
1902
1903         * ircd/m_ping.c: convert to new send functions
1904
1905         * ircd/m_pass.c: convert to new send functions
1906
1907         * ircd/m_opmode.c: convert to new send functions
1908
1909         * ircd/m_oper.c: convert to new send functions
1910
1911         * ircd/m_notice.c: convert to new send functions
1912
1913         * ircd/m_nick.c: convert to new send functions
1914
1915         * ircd/m_names.c: convert to new send functions
1916
1917         * ircd/m_motd.c: convert to new send functions
1918
1919         * ircd/m_mode.c: convert to new send functions
1920
1921         * ircd/m_map.c: convert to new send functions
1922
1923         * ircd/m_lusers.c: convert to new send functions
1924
1925         * ircd/m_list.c: convert to new send functions
1926
1927         * ircd/m_links.c: convert to new send functions
1928
1929         * ircd/m_kill.c: convert to new send functions
1930
1931         * ircd/m_jupe.c: convert to new send functions
1932
1933         * ircd/m_invite.c: convert to new send functions
1934
1935         * ircd/m_info.c: convert to new send functions
1936
1937         * ircd/m_help.c: convert to new send functions
1938
1939         * ircd/m_gline.c: convert to new send functions
1940
1941         * ircd/m_error.c: convert to new send functions
1942
1943         * ircd/m_endburst.c: convert to new send functions
1944
1945         * ircd/m_die.c: convert to new send functions
1946
1947         * ircd/m_destruct.c: convert to new send functions
1948
1949         * ircd/m_defaults.c: convert to new send functions
1950
1951         * ircd/m_connect.c: convert to new send functions
1952
1953 2000-04-28  Perry Lorier <isomer@coders.net>
1954         * RELEASE.NOTES: Describe a few more undocumented features.
1955         * config/config-sh.in: change the default paths for logging
1956         and the recommended number of channels.
1957         * include/supported.h: Rearrange slightly, added CHANTYPE's
1958
1959 2000-04-27  Kevin L. Mitchell  <klmitch@mit.edu>
1960
1961         * ircd/m_close.c: convert to send_reply
1962
1963         * ircd/m_clearmode.c: convert to send_reply, sendcmdto_serv_butone
1964
1965         * ircd/m_away.c: convert to send_reply and sendcmdto_serv_butone
1966
1967         * ircd/m_admin.c: convert to send_reply and hunt_server_cmd
1968
1969         * ircd/s_user.c (hunt_server_cmd): new hunt_server replacement
1970         that takes cmd and tok arguments, etc.  NOTE: THIS IMPLEMENTATION
1971         HAS A MAJOR HACK!!!  The whole hunt_server architecture should be
1972         carefully rethought...
1973
1974         * ircd/s_stats.c (hunt_stats): use new hunt_server_cmd
1975
1976         * include/s_user.h: hunt_server_cmd -- replacement for hunt_server
1977
1978         * ircd/s_misc.c: *sigh* 2.10.10 doesn't support squitting by
1979         numeric nick; therefore, we have to use the server name
1980
1981         * ircd/m_squit.c (ms_squit): allow to squit by server numeric nick
1982
1983         * ircd/send.c: fix minor bugs
1984
1985         * ircd/s_user.c (check_target_limit): mark dead code so I filter
1986         it when I grep
1987
1988         * ircd/s_serv.c (exit_new_server): mark dead code so I filter it
1989         when I grep
1990
1991         * ircd/parse.c: mark dead code so I filter it when I grep
1992
1993         * ircd/map.c: mark dead code so I filter it when I grep
1994
1995         * ircd/ircd.c: mark dead code so I filter it when I grep
1996
1997         * ircd/ircd_relay.c: convert over to new sendcmdto_*, send_reply
1998         functions
1999
2000         * ircd/channel.c: mark dead code so I filter it when I grep
2001
2002         * ircd/s_stats.c: use send_reply instead of sendto_one w/rpl_str;
2003         hope I'm not stepping on toes...
2004
2005         * ircd/s_conf.c: more sendto_opmask_butone / send_reply
2006         conversions; use ircd_snprintf in a couple of cases to negate the
2007         possibility of buffer overflow
2008
2009 2000-04-26  Kevin L. Mitchell  <klmitch@mit.edu>
2010
2011         * ircd/channel.c: convert as much as possible to new send
2012         semantics
2013
2014         * ircd/send.c (sendcmdto_common_channels): fix a subtle bug --
2015         test member->user->from->fd, not from->fd
2016
2017         * ircd/gline.c (gline_add): go ahead and add badchans; we just
2018         won't look for them in m_gline; this way, they always work...
2019
2020         * ircd/jupe.c: use ircd_vsnprintf conversion specifiers
2021
2022         * ircd/gline.c: since write_log now uses ircd_vsnprintf, use
2023         ircd_vsnprintf conversion specifiers
2024
2025         * ircd/support.c (write_log): use ircd_vsnprintf for write_log, so
2026         I have my conversion specifiers
2027
2028         * ircd/gline.c (do_gline): use send_reply for ERR_YOUREBANNEDCREEP
2029
2030         * ircd/send.c (sendcmdto_flag_butone): explicitly send WALLOPS to
2031         local users
2032
2033         * ircd/s_serv.c (exit_new_server): rewrite exit_new_server to be a
2034         little less brain-dead
2035
2036         * ircd/s_misc.c: use sendcmdto_one, sendrawto_one, and send_reply
2037
2038         * ircd/s_debug.c: use send_reply with RPL_EXPLICIT for
2039         RPL_STATSDEBUG
2040
2041         * ircd/res.c (cres_mem): use send_reply with RPL_EXPLICIT for
2042         RPL_STATSDEBUG
2043
2044         * ircd/list.c (send_listinfo): use send_reply with RPL_EXPLICIT
2045         for RPL_STATSDEBUG
2046
2047         * ircd/m_pong.c: use RPL_EXPLICIT for ERR_BADPING
2048
2049         * ircd/ircd.c: use RPL_EXPLICIT for ERR_BADPING
2050
2051         * ircd/s_user.c (register_user): use RPL_EXPLICIT for
2052         ERR_INVALIDUSERNAME
2053
2054         * ircd/ircd_reply.c (send_reply): support RPL_EXPLICIT
2055
2056         * include/ircd_reply.h (RPL_EXPLICIT): somewhat of a hack to mark
2057         a numeric as needing to use an explicit pattern, which will be the
2058         first argument in the variable argument list
2059
2060         * ircd/s_user.c: use sendrawto_one instead of sendto_one to send
2061         non-prefixed nospoof PING
2062
2063         * ircd/s_bsd.c: use sendrawto_one instead of sendto_one to send
2064         non-prefixed SERVER login
2065
2066         * ircd/ircd.c (check_pings): fix last sendto_one calls (except for
2067         a numeric usage further up)
2068
2069         * include/send.h: declare sendrawto_one
2070
2071         * ircd/send.c (sendrawto_one): new function to use ONLY for
2072         non-prefixed commands, like PING to client, or PASS/SERVER on
2073         server registration
2074
2075 2000-04-25  Kevin L. Mitchell  <klmitch@mit.edu>
2076
2077         * ircd/ircd_snprintf.c (doprintf): implement %H for possible
2078         future expansion (channel numerics?)
2079
2080         * include/ircd_snprintf.h: added documentation to # to explain use
2081         with %C; added documentation for : to explain use with %C; added
2082         documentation for %H for channels
2083
2084         * ircd/whocmds.c: use send_reply
2085
2086         * ircd/userload.c: use sendcmdto_one
2087
2088         * ircd/uping.c: use sendcmdto_one
2089
2090         * ircd/send.c: use new flags to %C format string; ':' prefixes
2091         client name with a colon for local connects, '#' uses
2092         nick!user@host form for local connects
2093
2094         * ircd/s_user.c: use send_reply, sendto_opmask_butone,
2095         sendcmdto_one, sendcmdto_serv_butone, sendcmdto_flag_butone
2096
2097         * ircd/s_serv.c: use sendcmdto_one, sendto_opmask_butone
2098
2099         * ircd/s_bsd.c: use sendto_opmask_butone, send_reply,
2100         sendcmdto_one
2101
2102         * ircd/s_auth.c: use sendto_opmask_butone
2103
2104         * ircd/res.c: use sendcmdto_one
2105
2106         * ircd/ircd_snprintf.c (doprintf): minor bug fixes and some
2107         debugging assertions
2108
2109 2000-04-24  Kevin L. Mitchell  <klmitch@mit.edu>
2110
2111         * ircd/support.c: dumpcore is no longer used, so get rid of it
2112
2113         * ircd/parse.c: use send_reply, sendcmdto_one
2114
2115         * ircd/map.c: use send_reply
2116
2117         * ircd/listener.c: use send_reply
2118
2119         * ircd/jupe.c: use sendto_opmask_butone, send_reply
2120
2121         * ircd/ircd_reply.c: use send_reply
2122
2123         * ircd/ircd.c: use sendto_opmask_butone
2124
2125         * ircd/gline.c: use sendto_opmask_butone, send_reply
2126
2127         * ircd/ircd_snprintf.c (doprintf): make it deal with incompletely
2128         registered clients; make FLAG_ALT print nick!user@host; make
2129         FLAG_COLON print :blah
2130
2131         * ircd/class.c (report_classes): use send_reply instead of
2132         sendto_one
2133
2134         * ircd/hash.c (m_hash): replace sendto_one with sendcmdto_one
2135
2136         * ircd/IPcheck.c (ip_registry_connect_succeeded): replace
2137         sendto_one with sendcmdto_one
2138
2139 2000-04-21  Kevin L. Mitchell  <klmitch@mit.edu>
2140
2141         * ircd/send.c: clean up logic in sendcmdto_channel_butone; use
2142         MyConnect() instead of IsServer() in sendcmdto_flag_butone; define
2143         sendcmdto_match_butone
2144
2145         * include/send.h: declare sendcmdto_match_butone
2146
2147 2000-04-20  Kevin L. Mitchell  <klmitch@mit.edu>
2148
2149         * ircd/jupe.c: update to use send_reply()
2150
2151         * ircd/gline.c: update to use send_reply()
2152
2153         * include/ircd_reply.h: declare send_reply
2154
2155         * ircd/ircd_reply.c (send_reply): send_error_to_client, but for
2156         replies; uses ircd_snprintf
2157
2158         * ircd/send.c: added comments to redirect searchers to appropriate
2159         sendcmdto_* function; moved new functions to end of file; added
2160         explanatory comments; reordered arguments; defined new functions
2161         mentioned below
2162
2163         * ircd/m_jupe.c: reorder arguments to sendcmdto_* functions
2164
2165         * ircd/m_gline.c: reorder arguments to sendcmdto_* functions
2166
2167         * ircd/jupe.c: reorder arguments to sendcmdto_* functions
2168
2169         * ircd/gline.c: reorder arguments to sendcmdto_* functions
2170
2171         * include/send.h: reorder arguments, add explanatory comments,
2172         declare new functions sendcmdto_flag_butone, sendto_opmask_butone,
2173         and vsendto_opmask_butone
2174
2175 2000-04-19  Kevin L. Mitchell  <klmitch@mit.edu>
2176
2177         * ircd/send.c: define sendcmdto_channel_butone, wrote a simplified
2178         vsendto_op_mask that uses '*' instead of the receiving client
2179         nickname
2180
2181         * include/send.h: declare sendcmdto_channel_butone; takes a skip
2182         argument that allows you to skip (or not to skip) deaf users,
2183         users behind bursting servers, and non channel operators
2184
2185 2000-04-17  Kevin L. Mitchell  <klmitch@mit.edu>
2186
2187         * ircd/send.c: new sendcmdto_channel_butserv -- note that old
2188         sendto_channel_butserv has a subtle bug; also wrote
2189         sendcmdto_common_channels.
2190
2191         * include/send.h: declare new sendcmdto_* functions
2192
2193         * ircd/jupe.c: support local deactivations of jupes
2194
2195         * ircd/gline.c: support local deactivations of glines
2196
2197         * include/jupe.h: JUPE_LDEACT allows jupes to be locally
2198         deactivated; if they aren't locally deactivated, then it slaves to
2199         the net-wide activation status; JupeIsRemActive() tests only
2200         whether the jupe is active everywhere else
2201
2202         * include/gline.h: GLINE_LDEACT allows glines to be locally
2203         deactivated; if they aren't locally deactivated, then it slaves to
2204         the net-wide activation status; GlineIsRemActive() tests only
2205         whether the gline is active everywhere else
2206
2207         * ircd/gline.c: detect overlapping G-lines; if an existing, wider
2208         gline expires after the new one will, we drop the new one,
2209         otherwise we add the G-line after that one (so the wide one will
2210         apply first); if the new one contains an existing G-line and if it
2211         will expire after the existing one, we drop the existing one to
2212         save memory
2213
2214         * ircd/m_gline.c (mo_gline): opers could issue remote local
2215         glines when CONFIG_OPERCMDS was off; fixed
2216
2217 2000-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
2218
2219         * ircd/m_jupe.c (mo_jupe): allow target argument to be dropped if
2220         this is a local JUPE
2221
2222         * ircd/gline.c: add flags argument to gline_activate and
2223         gline_deactivate for future expansion
2224
2225         * ircd/m_gline.c: pass flags to gline_activate and
2226         gline_deactivate
2227
2228         * include/gline.h: add flags argument to gline_activate and
2229         gline_deactivate
2230
2231         * ircd/jupe.c: add flags argument to jupe_activate and
2232         jupe_deactivate for future expansion
2233
2234         * include/jupe.h: add flags argument to jupe_activate and
2235         jupe_deactivate
2236
2237         * ircd/m_jupe.c: pass a flags argument to jupe_add instead of
2238         local, active; pass flags to jupe_activate and jupe_deactivate
2239
2240         * include/gline.h: remove dead code
2241
2242         * ircd/gline.c: make gline expire times relative to CurrentTime,
2243         since that should be monotonically increasing, instead of
2244         TStime(), which can be set backwards, and which can therefore
2245         cause an expire time to increase; make local glines be removed
2246         instead of just deactivated; don't let gline_find() look for
2247         user@host glines if the mask being looked up is a channel mask
2248
2249         * ircd/send.c (vsendcmdto_one): forgot to account for the case
2250         where origin is a server and destination is a user
2251
2252         * ircd/jupe.c: make jupe expire times relative to CurrentTime,
2253         since that should be monotonically increasing, instead of
2254         TStime(), which can be set backwards, and which can therefore
2255         cause an expire time to increase; make local jupes be removed
2256         instead of just deactivated
2257
2258         * ircd/ircd_snprintf.c: d'oh, thanks for catching that; short for
2259         limit is fine.  any other warnings I should know about?
2260
2261 2000-04-15  Thomas Helvey <tomh@inxpress.net>
2262
2263         * ircd/*.c: const correctness and type safety cleanups to
2264         get code to compile with C++ compiler. Still has
2265         signed/unsigned comparison warnings.
2266
2267 2000-04-15  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2268
2269         * ircd/userload.c: change <sys/time.h> include to <time.h> for
2270           portability.
2271
2272 2000-04-14  Kevin L. Mitchell  <klmitch@mit.edu>
2273
2274         * ircd/m_gline.c (mo_gline): d'oh, target isn't a numeric; use %C
2275         and convert acptr...
2276
2277         * ircd/s_user.c: move gline_lookup function call into
2278         register_user, where it'll have a username to lookup!
2279
2280         * ircd/m_gline.c: modify to utilize new sendcmdto_* series of
2281         functions; also stuff send_error_to_client into return clauses
2282
2283         * ircd/m_jupe.c: modify to utilize new sendcmdto_* series of
2284         functions; also use send_error_to_client where that makes sense
2285
2286         * ircd/jupe.c: modify to utilize new sendcmdto_* series of
2287         functions; also use send_error_to_client where that makes sense
2288
2289         * ircd/gline.c: modify to utilize new sendcmdto_* series of
2290         functions; also fix gline_lookup() to deal properly with remote
2291         clients--boy, do struct Client and struct User need to be cleaned
2292         up!
2293
2294         * ircd/ircd_snprintf.c (doprintf): a dest of &me is a server,
2295         too...
2296
2297         * ircd/send.c: wrote sendcmdto_one(), vsendcmdto_one(), and
2298         sendcmdto_serv_butone(), all utilizing the %v conversion of
2299         ircd_snprintf()
2300
2301         * include/send.h: define IRC_BUFSIZE, max size of a message;
2302         declare sendcmdto_one(), vsendcmdto_one(), and
2303         sendcmdto_serv_butone()
2304
2305         * include/msg.h: define all the CMD_* constants needed to utilize
2306         the new sendcmdto_* series of functions
2307
2308         * ircd/Makefile.in (SRC): list ircd_snprintf.c; run make depend
2309
2310         * ircd/gline.c: remove old, dead code.
2311
2312         * ircd/m_gline.c (mo_gline): disallow setting of global G-lines
2313         unless CONFIG_OPERCMDS is enabled; disallow listing of all G-lines
2314         (don't advertise proxies); remove dead code
2315
2316         * ircd/parse.c: oper handler for JUPE only lists jupes unless
2317         CONFIG_OPERCMDS is enabled
2318
2319         * ircd/m_jupe.c (mo_jupe): don't compile mo_jupe() if
2320         CONFIG_OPERCMDS is not enabled; we'll disable it in parse.c
2321
2322         * ircd/m_opmode.c (mo_opmode): if CONFIG_OPERCMDS is not enabled,
2323         always return ERR_DISABLED
2324
2325         * ircd/m_clearmode.c (mo_clearmode): if CONFIG_OPERCMDS is not
2326         enabled, always return ERR_DISABLED
2327
2328         * ircd/s_err.c: add error message to indicate disabled commands
2329
2330         * include/numeric.h (ERR_DISABLED): to indicate disabled commands
2331
2332         * doc/Configure.help: add documentation for CONFIG_OPERCMDS
2333
2334         * config/config-sh.in: add CONFIG_OPERCMDS, default both it and
2335         CONFIG_NEW_MODE to 'y' for now
2336
2337         * ircd/gline.c (gline_list): fix a minor formatting bogon
2338
2339         * BUGS: since I fixed that bug, might as well mark it fixed.
2340
2341         * ircd/m_join.c: look up badchans with GLINE_EXACT
2342
2343         * ircd/m_gline.c: fix parc count problems; look up existing
2344         G-lines with GLINE_EXACT; only set new lastmod when
2345         activating/deactivating existing glines if old lastmod was not 0
2346
2347         * ircd/gline.c: forgot to copy the gline reason over; don't
2348         propagate a gline with 0 lastmod if origin is user; add
2349         GLINE_EXACT to force exact matching of gline mask
2350
2351         * ircd/ircd_snprintf.c (doprintf): forgot to deal with the zero
2352         flag properly
2353
2354         * ircd/s_conf.c (find_kill): gline_find() takes a char *userhost,
2355         but gline_lookup() actually takes a client--d'oh.
2356
2357 2000-04-13  Thomas Helvey <tomh@inxpress.net>
2358         * ircd/IPcheck.c: Back port BLMet's bugfix from 2.10.10
2359
2360 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2361
2362         * ircd/whocmds.c: Don't make idle flag default in /who, to prevent:
2363           "/who * x"
2364           "Gte3 H*iwg Gte@212.49.240.217 :1 :0 I am the one that was."
2365           (Found by Plexus).
2366
2367         * ircd/whocmds.c: Change idle time calc from socket idle to user
2368           idle.
2369
2370 2000-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
2371
2372         * config/aclocal.m4 (unet_CHECK_TYPE_SIZES): check size of void *,
2373         too, for ircd_snprintf.c
2374
2375         * include/ircd_snprintf.h: documentation for ircd_(v)snprintf, in
2376         comments; mostly descended from the Linux manpage for printf, but
2377         also documenting the extensions.
2378
2379         * ircd/ircd_snprintf.c: NULL dest is equivalent to going to a
2380         client; make 'q' be the same as 'L'; remove __inline__; only
2381         define EXTENSION if HAVE_LONG_LONG is defined
2382
2383         * include/handlers.h: declare m_gline()
2384
2385         * ircd/parse.c: gline can be called by users, but it only lists
2386         the glines.
2387
2388         * ircd/s_user.c (set_nick_name): resend gline if a remote server
2389         introduces a glined client
2390
2391         * ircd/s_serv.c (server_estab): burst glines, too
2392
2393         * ircd/gline.c: fix up all the expire times to be offsets;
2394         simplify gline_resend()
2395
2396         * ircd/m_gline.c: begin coding replacements for ms_gline(),
2397         mo_gline(), and m_gline()
2398
2399         * ircd/gline.c (gline_add): allow *@#channel to work correctly;
2400         also, prohibit local BADCHANs if LOCAL_BADCHAN not defined
2401
2402 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2403
2404         * tools/Bouncer/*: Add comments/documentation/tags.
2405         * tools/Bouncer/*: Add debug defines, make task fork().
2406
2407 2000-04-12  Thomas Helvey <tomh@inxpress.net>
2408         * ircd/s_err.c: Cleanup s_err.c make one table so we
2409         don't have to do anything tricky to get an error string.
2410
2411 2000-04-12  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2412         * Add port bouncer for http (x/w)
2413
2414 2000-04-12  Kevin L. Mitchell  <klmitch@mit.edu>
2415
2416         * ircd/s_conf.c (find_kill): replaced call to find_gline() with a
2417         call to gline_find(); also used GlineReason() instead of direct
2418         reference to structure member
2419
2420         * ircd/m_join.c (m_join): replace bad_channel() calls with calls
2421         to gline_find(name, GLINE_BADCHAN), and also check to see if gline
2422         is active
2423
2424         * ircd/channel.c: nothing seems to be called anywhere...
2425
2426         * ircd/s_err.c: update a couple of replies to dovetail with new
2427         semantics
2428
2429         * ircd/gline.c: begin complete re-implementation of gline.c along
2430         the lines of the final design of jupe.c
2431
2432         * include/gline.h: begin complete re-implementation of gline.c
2433         along the lines of the final design of jupe.c
2434
2435         * ircd/channel.c (mode_process_clients): fix "Deop of +k user on
2436         %s by %s" message...
2437
2438         * ircd/ircd_snprintf.c: my new snprintf()-like functions
2439
2440         * include/ircd_snprintf.h: my new snprintf()-like functions
2441
2442 2000-04-11  Thomas Helvey <tomh@inxpress.net>
2443         * ircd/IPcheck.c: removed old dead code
2444         * ircd/s_user.c (send_user_info): removed non-standard
2445           user not found message for userhost/userip
2446
2447 2000-04-11  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2448
2449         * ircd/s_err.c: Added missing quotes to ERR_DONTCHEAT numeric.
2450         * doc/p10.html: Work on chapter 4.
2451
2452 2000-04-10  Kevin L. Mitchell  <klmitch@mit.edu>
2453
2454         * ircd/channel.c (mode_parse_client): fix coredump on /mode
2455         #foobar +o nosuchnick
2456
2457 2000-04-10  Perry Lorier  <Isomer@coders.net>
2458         * BUGS: Added bug.
2459
2460 2000-04-09  Thomas Helvey <tomh@inxpress.net>
2461         * include/IPcheck.h: fix prototype
2462         * ircd/s_user.c: fix usage of IPcheck_remote_connect
2463         * ircd/IPcheck.c: removed unused args
2464
2465 2000-04-09  Thomas Helvey <tomh@inxpress.net>
2466         * include/IPcheck.h: add proto for IPcheck_expire
2467
2468         * ircd/IPcheck.c: Rewrote
2469
2470         * ircd/ircd.c: Add IPcheck_expire to main message loop
2471
2472         * ircd/s_user.c: Redo target hashing, refactor target code
2473
2474         * include/numeric.h: Cleaned up numerics, added which ones are
2475         in use by other networks and what they are in use for.
2476
2477         * ircd/channel.c: cleaned can_join(), allow anyone through anything
2478         if /invited, simplified the function.  Opers overusing OPEROVERRIDE
2479         will get a message explaining to them not to cheat.
2480
2481         * ircd/m_join.c: cleaned up the various join functions, should be
2482         a lot more efficient.  Still needs work.  Now assumes that s<->s
2483         won't send it a JOIN 0.  Service coders - note this and tread with
2484         care.
2485
2486         * ircd/m_stats.c: added Gte-'s stats doc patch.
2487
2488         * ircd/m_version.c: /version now returns the 005 numeric as well.
2489         as requested by Liandrin.
2490
2491
2492 2000-04-07  Kevin L. Mitchell  <klmitch@mit.edu>
2493
2494         * ircd/m_clearmode.c: add include for support.h for write_log()
2495
2496         * configure: move ircd/crypt/* to tools/*
2497
2498 2000-04-06  Thomas Helvey <tomh@inxpress.net>
2499         * ircd/s_auth.c: Shorten auth connect timeout to 60 seconds
2500           set client host to server alias if connection from localhost
2501
2502 2000-04-06  Perry Lorier <isomer@coders.net>
2503         * ircd/ircd.c: Fix core during pinging (oops)
2504         
2505 2000-04-06  Perry Lorier <isomer@coders.net>
2506         * ircd/send.c: fixed wrong ident being sent to channels bug.
2507         * include/numerics.h: Updated some of the numerics from other
2508         networks.  Flagged some as 'unused' by undernet.
2509
2510 2000-03-30  Perry Lorier <isomer@coders.net>
2511         * ircd/ircd.c: Lets see if this helps the ping problem at all.
2512         * ircd/whocmds.c, /doc/readme.who: Added %l specifier to get idle
2513         time for local clients. (as requested), extended who now returns all
2514         the flags (@+!) so you can tell the complete state of a client.
2515
2516 2000-03-30  Thomas Helvey <tomh@inxpress.net>
2517         * m_rping.c m_rpong.c: add Gte's rping/rpong fixes
2518
2519 2000-03-30  Perry Lorier <isomer@coders.net>
2520         * ircd/parse.c: oops, missed opers.
2521
2522 2000-03-30  Perry Lorier <isomer@coders.net>
2523         * ircd/parse.c: fixed mystifying ping bug thats been plaguing us
2524         for so long.  Remember: m_ping MUST be in the parse array. :)
2525
2526 2000-03-30  Perry Lorier <isomer@coders.net>
2527         * ircd/ircd.c: test in check_pings was wrong.  I move that we
2528         disallow cvs commit after 10pm localtime....
2529
2530 2000-03-30  Perry Lorier <isomer@coders.net>
2531         * ircd/m_pong.c: Fix it for servers too.
2532
2533 2000-03-30  Perry Lorier <isomer@coders.net>
2534         * ircd/m_pong.c: Fix ping timeout bugs
2535
2536 2000-03-30  Perry Lorier <isomer@coders.net>
2537         * ircd/channel.c: Bans had CurrentTime in their when field instead
2538         of TStime()
2539
2540 2000-03-31  Thomas Helvey <tomh@ixpress.net>
2541         * ircd/numnicks.c (SetXYYCapacity): fix for extended
2542         numerics.
2543
2544 2000-03-30  Perry Lorier <isomer@coders.net>
2545         * ircd/m_nick.c: send kills both ways so when we add nick change
2546         on collision we don't desync the network.
2547
2548         * ircd/map.c: Fixup the map a bit more.
2549
2550 2000-03-31  Kevin L. Mitchell  <klmitch@mit.edu>
2551
2552         * ircd/m_clearmode.c (do_clearmode): Log the CLEARMODE to OPATH
2553
2554         * ircd/m_opmode.c: Log the mode changes to OPATH
2555
2556         * ircd/channel.c (modebuf_flush_int): Log the mode changes to
2557         OPATH
2558
2559         * include/channel.h (MODEBUF_DEST_LOG): Log the mode changes to
2560         OPATH
2561
2562         * doc/Configure.help: help text for CONFIG_LOG_OPMODE / OPATH
2563
2564         * config/config-sh.in: added OPATH for opmode log file
2565
2566         * ircd/m_clearmode.c (do_clearmode): updated uses of
2567         modebuf_mode_string() for the new usage
2568
2569         * ircd/channel.c: added flag MODE_FREE and an int argument to
2570         modebuf_mode_string() to indicate that the string must be free'd;
2571         updated calls to modebuf_mode_string() for the new usage; called
2572         collapse(pretty_mask()) on the ban string and use allocated memory
2573         for it; added ban list length accounting; fixed a number of small
2574         bugs in ban processing
2575
2576         * include/channel.h: added flag MODE_FREE and an int argument to
2577         modebuf_mode_string() to indicate that the string must be free'd
2578
2579         * ircd/m_clearmode.c (do_clearmode): made sure clearmode removed
2580         keys and limits that are set
2581
2582 2000-03-30  Perry Lorier <isomer@coders.net>
2583         * ircd/ircd.c: rewrote check_pings() for maintainability
2584         and speed.  Also changed quit msg's so they don't have
2585         redundant nick[host] info in them.
2586
2587         * ircd/send.c: Changed write errors to report what error
2588         occured (if possible).
2589
2590         * ircd/gline.c: added gline comment to the quit.
2591
2592         * ircd/m_server.c: Added suggestions to server quits mentioning
2593         what went wrong so the admin can fix it earlier instead of asking
2594         questions...
2595
2596         * ircd/map.c: Changed m_map() to hide numerics, show a * beside
2597         servers that aren't fully burst yet.  And show '(--s)' for servers
2598         where its not sure.
2599
2600         * doc/example.conf: Fixed wrapped U:
2601
2602 2000-03-30  Kevin L. Mitchell  <klmitch@mit.edu>
2603
2604         * ircd/m_mode.c (ms_mode): implemented a new m_mode in terms of
2605         mode_parse() (version selectable at compile time)
2606
2607         * ircd/m_clearmode.c (mo_clearmode): clean_channelname(parv[1])
2608
2609         * ircd/m_opmode.c (mo_opmode): clean_channelname(parv[1])
2610
2611         * config/config-sh.in: add new config option to enable new m_mode
2612         implementation
2613
2614         * doc/Configure.help: add documentation for new config option
2615         CONFIG_NEW_MODE
2616
2617         * ircd/channel.c (mode_parse_client): /opmode #foobar -o -- 461
2618         MODE -v : Not enough parameters
2619
2620         * ircd/m_clearmode.c (do_clearmode): do_clearmode() would remove
2621         +k and +l even if they weren't set...
2622
2623         * ircd/m_opmode.c: implement the OPMODE command using mode_parse()
2624
2625         * ircd/channel.c: make mode_process_clients() clear the DEOPPED
2626         flag; fix +s+p exclusivity; add MODE_ADD/MODE_DEL to flag list
2627         for; test the 0-th member, not the i-th member, of the client
2628         change state stuff
2629
2630         * ircd/m_clearmode.c (do_clearmode): use the new
2631         mode_invite_clear() function
2632
2633         * ircd/channel.c: cleared up all the compile-time warnings and
2634         errors
2635
2636         * include/channel.h: added declarations for mode_ban_invalidate()
2637         and mode_invite_clear()
2638
2639         * ircd/channel.c: finished mode_parse(), then broke it up into a
2640         dozen or so helper functions to make the code easier to read
2641
2642 2000-03-29  Thomas Helvey <tomh@inxpress.net>
2643         * ircd/ircd.c: refactor server initialization a bit, use
2644         getopt for parsing command line, refactor init_sys, main,
2645         and other bits.
2646
2647         * ircd/s_bsd.c: add functions for initialization to clean
2648         up logic a bit and remove duplicated code.
2649
2650         * include/ircd.h: add struct for server process related
2651         variables.
2652
2653 2000-03-29  Kevin L. Mitchell  <klmitch@mit.edu>
2654
2655         * ircd/channel.c: initial definition of mode_parse(); flags to
2656         prevent doing the same thing multiple times; helper method
2657         send_notoper() to send a "Not oper"/"Not on channel" notice
2658
2659         * include/channel.h: declare mode_parse() and helper flags
2660
2661         * ircd/channel.c (modebuf_flush_int): fiddled with timestamp
2662         sending to match the current action of set_mode() closely enough
2663         that hopefully there won't be major conflicts
2664
2665         * ircd/channel.c (modebuf_flush_int): consolidated the mode string
2666         building logic, reversed the order of the arguments to mode
2667         commands to have '-' preceed '+'
2668
2669 2000-03-29  Thomas Helvey <tomh@inxpress.net>
2670         * ircd/s_bsd.c (add_connection): don't disable socket options
2671         let OS tune itself and allow important performance tweaks to 
2672         work.
2673
2674 2000-03-28  Kevin L. Mitchell  <klmitch@mit.edu>
2675
2676         * ircd/channel.c (modebuf_flush_int): use %d, not %-15d; I got
2677         confused by set_mode, which is doing some really weird logic;
2678         guess what I'm going to rewrite next?  ;)
2679
2680 2000-03-28  Kevin L. Mitchell  <klmitch@emc.com>
2681
2682         * include/channel.h: added MODE_SAVE for the bounds checking stuff
2683         in modebuf_flush
2684
2685         * ircd/channel.c: make modebuf_flush into modebuf_flush_int and
2686         make it do bounds checking on the buffer; all modes are sent only
2687         if the all parameter is 1; modebuf_flush is the exported wrapper
2688
2689         * include/channel.h: add BOUNCE, renumber flags to get a little
2690         more space
2691
2692         * ircd/channel.c (modebuf_flush): don't overload HACK2, add
2693         BOUNCE; send DESYNCH message
2694
2695 2000-03-27  Kevin L. Mitchell  <klmitch@emc.com>
2696
2697         * ircd/m_clearmode.c (do_clearmode): only mark the modes the
2698         channel actually has in effect for deletion
2699
2700         * ircd/channel.c: added explanatory comments to all added
2701         functions; made flushing take place at the correct place even if
2702         the MODEBUF_DEST_DEOP flag is set; rewrote build_string() helper
2703         to bash some stupid bugs; made modebuf_flush() return if ModeBuf
2704         is empty, fixed the apparent source, removed some bogus string
2705         termination code, properly terminate the mode strings, add support
2706         for HACK2 and HACK3, made limit strings not be sent if the limit
2707         is being removed, changed where '+' and '-' come from in sent
2708         strings, added support for DEOP flag, set up bouncing code for
2709         HACK2
2710
2711         * ircd/Makefile.in: ran make depend
2712
2713         * include/channel.h: added new defines for future functionality,
2714         made modebuf_flush() return int so I can use tail recursion
2715
2716         * ircd/m_clearmode.c: add msg.h to includes; other misc cleanups
2717         to make it all compile
2718
2719         * ircd/m_opmode.c: add msg.h to includes...
2720
2721         * ircd/m_clearmode.c: implemented mo_clearchan()/ms_clearchan()
2722
2723         * ircd/channel.c (modebuf_flush): realized I forgot to
2724         nul-terminate addbuf/rembuf properly...
2725
2726         * ircd/m_clearmode.c (do_clearmode): wrote do_clearmode()...
2727
2728         * ircd/channel.c (modebuf_flush): correct sendto_server_butone to
2729         sendto_serv_butone--blah^2
2730
2731         * ircd/send.c (sendto_serv_butone): stupid comments confused me
2732
2733         * ircd/channel.c (modebuf_flush): if there are no mode changes to
2734         propagate, we're done...
2735
2736         * ircd/channel.c (modebuf_flush): duh; it's sendto_server_butone,
2737         not sendto_all_butone
2738
2739         * ircd/m_clearmode.c: define skeleton for m{o,s}_clearmode
2740
2741         * ircd/m_opmode.c: define skeleton for m{o,s}_opmode
2742
2743         * ircd/Makefile.in (SRC): added m_opmode() and m_clearmode() to
2744         the list
2745
2746         * ircd/parse.c: added messages for opmode and clearmode
2747
2748         * include/handlers.h: added declarations for mo_opmode(),
2749         ms_opmode(), mo_clearmode(), and ms_clearmode()
2750
2751         * include/msg.h: define MSG_OPMODE, TOK_OPMODE, MSG_CLEARMODE, and
2752         TOK_CLEARMODE
2753
2754         * include/channel.h (MODEBUF_DEST_OPMODE): Define the
2755         MODEBUF_DEST_OPMODE flag
2756
2757         * ircd/channel.c (modebuf_flush): added new flag,
2758         MODEBUF_DEST_OPMODE; causes channel MODE/HACK(4) notice to appear
2759         to originate from source's server (or source itself, if
2760         IsServer(source)); also causes a server-level MODE to be sent as
2761         OPMODE instead
2762
2763         * include/channel.h: defined MODEBUF_DEST_SERVER,
2764         MODEBUF_DEST_HACK4
2765
2766         * ircd/channel.c: Add another argument to build_string() to handle
2767         numeric nicks; implemented MODEBUF_DEST_SERVER to send MODEs to
2768         servers; implemented MODEBUF_DEST_HACK4 to cause HACK(4) notices
2769         to be sent out
2770
2771 2000-03-27  Perry Lorier <isomer@coders.net>
2772
2773         * ircd/s_bsd.c: fixed missing 'u' typo.
2774
2775 2000-03-26  Kevin L. Mitchell  <klmitch@emc.com>
2776
2777         * ircd/channel.c: implement modebuf_init(), _mode(), _mode_uint(),
2778         _mode_string(), _mode_client(), _flush(); also implemented a
2779         simple build_string()
2780
2781         * include/channel.h: added definition of ModeBuf, modebuf_*
2782         manipulation functions, and a couple of helper macros
2783
2784 2000-03-24 Thomas Helvey <tomh@inxpress.net>
2785   * numicks.c: convert extended numerics to use original mask version
2786   * numnicks.h: ""
2787   * s_user.c:
2788 2000-03-23 Thomas Helvey <tomh@inxpress.net>
2789   * Merge in changes from production
2790 2000-03-22 Thomas Helvey <tomh@inxpress.net>
2791   * numicks.c: Tweak to numnick generator to reduce possibility of duplicates.
2792   * rfc1459.unet: Add Maniac's documentation for /names 0
2793 * Fix misc. jupe bugs that somehow made it into the tree
2794 * Escape /names 0 to mean /names --Maniac
2795 * Don't core when server asks for info --Maniac 
2796 * Add Kev's jupe patch --Bleep
2797 * Add Maniacs squit patch --Bleep
2798 * Merge in u2_10_10_beta07 changes --Bleep
2799 * Merge in u2_10_10_beta06 changes --Bleep
2800 * Start ircu2.10.11 development, beta branch u2_10_10 --Bleep
2801 #-----------------------------------------------------------------------------