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