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