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