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