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