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