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