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