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