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