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