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