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