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