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