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