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