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