Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ChangeLog
1 2001-06-07  Kevin L. Mitchell  <klmitch@mit.edu>
2
3         * ircd/s_stats.c (hunt_stats): forward-port from pl15 of all the
4         changes required to control remote stats
5
6         * ircd/s_numeric.c (do_numeric): rewrite numeric origins if
7         recipient is not an operator and HEAD_IN_SAND_REWRITE is defined
8         [forward-port from pl15]
9
10         * ircd/m_whowas.c (m_whowas): report server name only if requester
11         is an operator [forward-port from pl15]
12
13         * ircd/m_whois.c (do_whois): /whois <mynick> now correctly reports
14         my server; if HEAD_IN_SAND_REMOTE is 1, ignore the middle argument
15         and obtain the report from the user's server [forward-port from
16         pl15]
17
18         * ircd/m_who.c: add missing include for ircd_policy.h
19         [forward-port from pl15]
20
21         * ircd/m_version.c (m_version): require oper access for remote
22         /version if HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
23
24         * ircd/m_time.c (m_time): require oper access for remote /time if
25         HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
26
27         * ircd/m_stats.c: pass extra argument to hunt_stats(); correct
28         missing semicolon [forward-port from pl15]
29
30         * ircd/m_nick.c (ms_nick): hide the origin of certain collision
31         kills [forward-port from pl15]
32
33         * ircd/m_motd.c (m_motd): require oper access for remote /motd if
34         HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
35
36         * ircd/m_lusers.c (m_lusers): require oper access for remote
37         /lusers if HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
38
39         * ircd/m_burst.c (ms_burst): server-added bans are stored using
40         local server name, to hide remote server names; modes also are to
41         originate from the local server [forward-port from pl15]
42
43         * ircd/m_admin.c (m_admin): require oper access for remote /admin
44         if HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
45
46         * ircd/channel.c (add_banid): if a server is adding a ban, use my
47         server name to hide the remote server's name [forward-port from
48         pl15]
49
50         * ircd/Makefile.in: ran make depend
51
52         * include/s_stats.h: hunt_stats() has to have an extra argument to
53         support the forward-port from pl15
54
55         * include/ircd_policy.h: #define HEAD_IN_SAND_STATS_P; add
56         HEAD_IN_SAND_{BANWHO,REWRITE,REMOTE} [forward-port from pl15]
57
58         * ircd/engine_poll.c (engine_loop): remove bogus assert that I
59         forgot to check in the events branch
60
61 2001-06-06  Kevin L. Mitchell  <klmitch@mit.edu>
62
63         * ircd/res.c (init_resolver): don't start DNS expires with a 0
64         relative timeout--if the server starts slow, timeouts could be
65         messy...there's probably a better solution, but this'll do for now
66
67         * ircd/os_solaris.c: _XOPEN_SOURCE doesn't get along with Solaris
68         headers very well; include stropts.h; define an os_set_tos()
69
70         * ircd/os_generic.c (os_set_tos): added an os_set_tos() for
71         os_generic.c
72
73         * ircd/ircd.c: if there are no C-lines, we don't want to have a
74         timer that expires at the absolute time of 0--it kinda blocks all
75         the other timers!
76
77         * ircd/engine_devpoll.c: some includes for open(); declare errcode
78         and codesize in engine_loop()
79
80         * ircd/list.c (free_client): remove bogus check on timer active
81         flag
82
83         * ircd/s_auth.c: pull out destruction code in
84         auth_timeout_request() into an externally-visible
85         destroy_auth_request(); manage cli_auth pointer in client
86         structure; use it for an extra assertion check
87
88         * ircd/list.c: include s_auth.h for destroy_auth_request(); add
89         debugging notices to show flow when deallocating
90         connections/clients; call destroy_auth_request() when free'ing a
91         client that has an auth outstanding; don't free the connection if
92         the process timer is unmarked but still active
93
94         * ircd/ircd_events.c: set GEN_ACTIVE when initializing a generator
95         and reset it before calling the event handler for an ET_DESTROY
96         event
97
98         * include/s_auth.h (destroy_auth_request): declare
99         destroy_auth_request(), which can be used to destroy an
100         outstanding auth request if a client socket goes away before the
101         auth exchange is completed
102
103         * include/ircd_events.h: add an active flag to keep track of
104         whether or not particular generators are active, for the
105         convenience of functions using the API
106
107         * include/client.h: add a pointer for auth requests to struct
108         Connection so we can kill outstanding auth requests if a client
109         socket closes unexpectedly
110
111         * ircd/s_bsd.c: cli_connect() could become 0 during the course of
112         the sock or timer callback; take that into account in the assert
113
114         * ircd/list.c: add magic number checking and setting--magic
115         numbers are zero'd on frees to detect double-frees; add back
116         setting of cli_from() to 0 to break the back-link from the struct
117         Connection (duh)
118
119         * ircd/ircd.c: set me's magic number correctly
120
121         * include/client.h: define magic numbers and accessor/verifier
122         macros
123
124         * ircd/list.c: assert that dealloc_client() is called with
125         cli_connect(cptr) == 0; set cli_connect(cptr) to 0 before calling
126         dealloc_client(); don't mess with cli_from(cptr)
127
128         * ircd/s_bsd.c: only attempt to dealloc a connection if the
129         associated client has already been destroyed, or at least delinked
130
131 2001-06-05  Kevin L. Mitchell  <klmitch@mit.edu>
132
133         * ircd/list.c (free_client): only try to delete the socket when
134         the fd hasn't already been closed, avoiding a double-free
135
136         * ircd/list.c (free_connection): make sure the client is really
137         gone before doing away with the connection
138
139         * ircd/s_bsd.c: record that socket has been added in con_freeflag
140         field; queue a socket_del() as soon as the socket is close()'d;
141         use con_freeflag & FREEFLAG_TIMER instead of con_timer; clear
142         FREEFLAG_SOCKET on ET_DESTROY event in client_sock_callback(),
143         then dealloc the connection if safe; mark socket as dead when
144         there's a read error or EOF; clear FREEFLAG_TIMER flag upon entry
145         to client_timer_callback(); dealloc connection if safe upon
146         ET_DESTROY event in client_timer_callback()
147
148         * ircd/list.c: use con_freeflag instead of con_timer; only dealloc
149         the connection if both socket and timer have been destroyed;
150         destroy both socket and timer explicitly and carefully
151
152         * include/client.h: replace the con_timer field with a
153         con_freeflag field, to indicate what still needs freeing; define
154         the freeflags
155
156         * ircd/engine_select.c (engine_loop): duh...sockList[i] could
157         become 0
158
159         * ircd/engine_devpoll.c (engine_loop): duh...sockList[i] could
160         become 0
161
162         * ircd/s_bsd.c: add some extra assertions to try to track down a
163         corruption problem
164
165         * ircd/engine_select.c (engine_loop): add an extra assert to try
166         to track down a corruption problem
167
168         * ircd/engine_poll.c (engine_loop): add an extra assert to try to
169         track down a corruption problem
170
171         * ircd/engine_kqueue.c (engine_loop): add an extra assert to try
172         to track down a corruption problem
173
174         * ircd/engine_devpoll.c (engine_loop): skip slots that have become
175         empty during processing; add an extra assert to try to track down
176         a corruption problem
177
178         * ircd/engine_kqueue.c (engine_delete): make sure to zero deleted
179         entries
180
181 2001-06-04  Kevin L. Mitchell  <klmitch@mit.edu>
182
183         * ircd/s_bsd.c (client_sock_callback): client is no longer
184         blocked, so we must mark it as unblocked
185
186         * ircd/engine_select.c: add Debug() calls galore; add handling for
187         SS_NOTSOCK; use a dummy sock variable to keep things from
188         disappearing on us; correct timeout calculation; update nfds for
189         efficiency
190
191         * ircd/engine_poll.c: use new debugging level (DEBUG_ENGINE);
192         remove a spurious "if (sock)" which will always be true; update
193         nfds for efficiency
194
195         * ircd/engine_kqueue.c: add Debug() calls galore; add handling for
196         SS_NOTSOCK (just in case); correct timeout calculation
197
198         * ircd/engine_devpoll.c: add Debug() calls galore; add handling
199         for SS_NOTSOCK; correct timeout calculation; add EAGAIN handling
200
201         * include/s_debug.h (DEBUG_ENGINE): add new debugging level;
202         pretty-indent numbers
203
204         * ircd/engine_poll.c (engine_loop): break out SS_NOTSOCK
205         case--it's not a socket; the check for writability is most likely
206         not needed, but present for completeness
207
208 2001-05-24  Kevin L. Mitchell  <klmitch@mit.edu>
209
210         * ircd/s_bsd.c: add Debug messages; call read_packet() even if the
211         no newline flag is set; call read_packet() when the timer expires,
212         regardless of what's in the buffer--read_packet() should be able
213         to deal properly
214
215         * ircd/IPcheck.c (ip_registry_connect_succeeded): correct a NOTICE
216         sent to clients to include the client nickname (duh)
217
218         * ircd/ircd_events.c: don't destroy a timer if it's already marked
219         for destruction; replace a missing ! in socket_del()
220
221         * ircd/engine_poll.c (engine_loop): reference a temporary variable
222         so we don't have to worry about sockList[i] going away
223
224         * ircd/s_bsd.c (client_sock_callback): add Debug messages
225
226         * ircd/s_auth.c: add Debug messages all over the place
227
228         * ircd/ircd_events.c: add and edit some Debug messages; add a list
229         of routines to convert some of the enums and flags from numbers
230         into human-readable strings for the Debug messages
231
232         * ircd/engine_poll.c: hack some Debug messages to use the new name
233         conversion routines in ircd_events.c; add an extra assert for a
234         condition that shouldn't ever happen; apparently recv() can return
235         EAGAIN when poll() returns readable--I wonder why...
236
237         * include/ircd_events.h: declare some helper routines under
238         DEBUGMODE
239
240 2001-05-23  Kevin L. Mitchell  <klmitch@mit.edu>
241
242         * ircd/s_bsd.c (client_sock_callback): add an extra assertion
243         check
244
245         * ircd/s_auth.c: add more Debug messages
246
247         * ircd/list.c (make_client): add an extra assertion check
248
249         * ircd/ircd_events.c (socket_events): don't call the engine events
250         changer if we haven't actually made any changes to the event mask
251
252         * ircd/uping.c: add some Debug messages
253
254         * ircd/s_stats.c: document new /STATS e
255
256         * ircd/s_err.c: add RPL_STATSENGINE to report the engine name
257
258         * ircd/s_bsd.c: remove static client_timer variable; in
259         read_packet(), if there's still data in the client's recvQ after
260         parsing, add a 2 second timer (con_proc); fix the ET_DESTROY case
261         of client_sock_callback to handle destroying the timer properly;
262         rewrote client_timer_callback from scratch to be called on an
263         individual client
264
265         * ircd/m_stats.c: add /STATS e to report the engine name
266
267         * ircd/list.c: deal with con_timer field in struct Connection
268         properly; correct a core-level bug in remove_client_from_list--if
269         the client is the only one in the list, we try to update
270         GlobalClientList's cli_prev pointer--not good
271
272         * ircd/ircd.c: remove call to init_client_timer()
273
274         * ircd/engine_poll.c: made Debug messages more uniform by
275         prepending "poll:" to them all; corrected an off-by-one error that
276         caused poll_count to be 1 less than the actual count and removed
277         my work-around; added Debug messages to indicate which socket is
278         being checked and what the results are
279
280         * ircd/Makefile.in: ran a make depend
281
282         * include/s_bsd.h: remove init_client_timer(), since we're doing
283         it differently now
284
285         * include/numeric.h (RPL_STATSENGINE): a stats reply to report the
286         engine name
287
288         * include/ircd_policy.h (HEAD_IN_SAND_STATS_E): turn off /stats e
289         reports for non-opers
290
291         * include/client.h: add con_timer and con_proc fields to struct
292         Connection and define accessor macros--con_timer marks that
293         con_proc contains a valid timer, and con_proc is used to pace user
294         data
295
296         * ircd/s_bsd.c (close_connection): let free_client() destroy the
297         socket
298
299         * ircd/s_auth.c (start_auth): add a Debug call to indicate when
300         auth has begun on a client
301
302         * ircd/ircd_events.c: ensure that event_execute() is called with a
303         non-NULL event; modify event_add() macro to properly zero list
304         bits; modify gen_dequeue() to not try to clip it out of a list
305         it's already been clipped out of; change signal socket
306         initialization to use state SS_NOTSOCK; permit timeout values of
307         0 in add_timer(); add many Debug calls; change socket_del() and
308         timer_del() to always set the GEN_DESTROY flag; use GEN_MARKED in
309         timer_run() instead of GEN_DESTROY so that event_generate() will
310         pass on the events; remove the switch and replace with a simpler
311         if-then-else tree in timer_run(); don't allow destroyed sockets to
312         be destroyed again, nor their states or event masks to be changed
313
314         * ircd/ircd.c: initialize "running" to 1
315
316         * ircd/engine_poll.c: deal with SS_NOTSOCK "sockets"; add Debug
317         messages all over the place; fix a counting problem in
318         engine_add(); turn wait into a signed integer and set it to -1
319         only if timer_next() returns 0; adjust wait time to be relative;
320         don't call gen_ref_dec() if socket disappeared while we were
321         processing it
322
323         * include/ircd_events.h: the pipe for signals is not a socket, so
324         we must mark it as such--added SS_NOTSOCK for that special socket;
325         events won't be generated if GEN_DESTROY is on, so add GEN_MARKED
326         for the benefit of timer_run()
327
328         * configure.in: add --enable-pedantic and --enable-warnings to
329         turn on (and off) -Wall -pedantic in CFLAGS
330
331 2001-05-21  Kevin L. Mitchell  <klmitch@mit.edu>
332
333         * ircd/s_conf.c: change "s_addr" element accesses to "address"
334         element accesses
335
336         * include/s_conf.h: on some systems, "s_addr" is a macro; use
337         "address" instead
338
339 2001-05-18  Kevin L. Mitchell  <klmitch@mit.edu>
340
341         * ircd/engine_kqueue.c: include ircd_alloc.h; set_or_clear returns
342         void in this file; add a missing semi-colon; declare errcode,
343         codesize
344
345         * ircd/uping.c (uping_sender_callback): it's pptr, not uping
346
347         * ircd/s_user.c (register_user): comment out spurious reference to
348         nextping
349
350         * ircd/s_serv.c (server_estab): comment out spurious reference to
351         nextping
352
353         * ircd/s_conf.c (read_configuration_file): comment out spurious
354         reference to nextping and nextconnect
355
356         * ircd/s_bsd.c: comment out some spurious references to formerly
357         global (now non-existant) variables; correct a couple of typos
358
359         * ircd/s_auth.c: pre-declare some functions referenced in the
360         callback; correct a typo
361
362         * ircd/res.c (start_resolver): pass errno value of ENFILE
363
364         * ircd/listener.c (accept_connection): you know your API is messed
365         up when...variables that shouldn't have been global crop up in
366         other files
367
368         * ircd/list.c (free_client): substitution of == for =
369
370         * ircd/ircd_signal.c: include assert.h for assertion checking;
371         check ev_data() to find out what signal generated event
372
373         * ircd/ircd_events.c: some references to the variable "timer"
374         should have been references to the variable "ptr"
375
376         * ircd/engine_select.c: it's struct fd_set, not struct fdset;
377         ev_timer(ev) is already a timer pointer; declare codesize as a
378         size_t to correct signedness issue; use timer_next(), not
379         time_next()
380
381         * ircd/engine_poll.c: ev_timer(ev) is already a timer pointer;
382         select fd out of struct pollfd in assertion checking; declare
383         errcode and codesize; use timer_next(), not time_next()
384
385         * ircd/engine_kqueue.c: ev_timer(ev) is already a timer pointer;
386         use function timer_next(), not time_next()
387
388         * ircd/engine_devpoll.c: ev_timer(ev) is already a timer pointer;
389         use function timer_next(), not time_next()
390
391         * ircd/Makefile.in (IRCD_SRC): add ircd_events.c to the list of
392         compiled sources; do make depend
393
394         * include/list.h: pre-declare struct Connection
395
396         * include/ircd_events.h (gen_ref_inc): cast to the right structure
397         name
398
399         * include/s_auth.h: duh; missing */
400
401 2001-05-10  Kevin L. Mitchell  <klmitch@mit.edu>
402
403         * ircd/send.c: update write events status after sending data or
404         accumulating data to be sent
405
406         * ircd/m_list.c (m_list): update write events status after
407         canceling a running /list
408
409         * ircd/channel.c (list_next_channels): update write events status
410         after listing a few channels
411
412         * ircd/s_bsd.c: extensive changes to update to new events model;
413         remove on_write_unblocked() and the two implementations of
414         read_message(), which have been deprecated by this change
415
416         * ircd/s_auth.c: set the socket events we're interested in for
417         clients; simplify some logic that does the connect_nonb followed
418         by the socket_add
419
420         * ircd/list.c: define free_connection() to free a connection
421         that's become freeable once the struct Socket has been
422         deallocated; fix up free_client() to take this new behavior into
423         account
424
425         * ircd/ircd.c: call init_client_timer()
426
427         * include/s_bsd.h: declare new REGISTER_ERROR_MESSAGE when unable
428         to register connect-in-progress with events system; declare
429         init_client_timer() (HACK!) to preserve rate-limiting behavior
430
431         * include/list.h: declare new free_connection()
432
433         * include/client.h: add a struct Socket to struct Connection
434
435 2001-05-09  Kevin L. Mitchell  <klmitch@mit.edu>
436
437         * ircd/ircd_signal.c: massage the handlers for SIGHUP, SIGINT, and
438         SIGTERM into event callbacks; perform the actions in the
439         callbacks, since they're not called in the context of the signal;
440         set up the signal callbacks in the event engine
441
442         * ircd/ircd_events.c (signal_callback): we're supposed to look for
443         a specific signal; don't generate an event if there is no signal
444         structure for it
445
446         * ircd/ircd.c: nuke nextconnect and nextping and replace them with
447         connect_timer and ping_timer; massage try_connections() and
448         check_pings() into timer callbacks that re-add themselves at the
449         right time; remove ircd.c's "event_loop()"; initialize the event
450         system and the connect_timer and ping_timer
451
452         * ircd/uping.c: correct a couple more typos
453
454         * ircd/s_auth.c: rework to use new events system
455
456         * ircd/os_solaris.c (os_connect_nonb): update to new interface
457
458         * ircd/os_openbsd.c (os_connect_nonb): update to new interface
459
460         * ircd/os_linux.c (os_connect_nonb): update to new interface
461
462         * ircd/os_generic.c (os_connect_nonb): update to new interface
463
464         * ircd/os_bsd.c (os_connect_nonb): update to new interface
465
466         * include/s_auth.h: remove deprecated members of struct
467         AuthRequest, replacing them with struct Socket and struct Timer
468         structures; add flags to indicate when these structures have been
469         released by the event system; remove the deprecated
470         timeout_auth_queries()
471
472         * include/ircd_osdep.h (os_connect_nonb): connect could complete
473         immediately, so change the interface to handle that possibility
474
475         * ircd/uping.c (uping_server): noticed and corrected a typo
476
477         * ircd/listener.c: set up to use ircd_event's struct Socket by
478         adding an socket_add() call to inetport(), replacing
479         free_listener() with socket_del() in close_listener(), and
480         reworking accept_connection to be called as the callback
481
482         * ircd/ircd.c: add a call to IPcheck_init()
483
484         * ircd/IPcheck.c: remove IPcheck_expire(); rework
485         ip_registry_expire() to be called from a timer; write
486         IPcheck_init() to set up the expiration timer (hard-coded for a
487         60-second expiration time)
488
489         * include/listener.h: add a struct Socket to the struct Listener;
490         remove accept_connection()
491
492         * include/IPcheck.h: add IPcheck_init(), remove IPcheck_expire()
493
494 2001-05-08  Kevin L. Mitchell  <klmitch@mit.edu>
495
496         * ircd/ircd_events.c: include config.h; use USE_KQUEUE and
497         USE_DEVPOLL instead of HAVE_KQUEUE and HAVE_DEVPOLL_H
498
499         * ircd/engine_select.c: include config.h; set FD_SETSIZE to
500         MAXCONNECTIONS, not IRCD_FD_SETSIZE...
501
502         * ircd/engine_poll.c: include config.h
503
504         * ircd/engine_kqueue.c: include config.h
505
506         * ircd/engine_devpoll.c: include config.h
507
508         * ircd/Makefile.in: include engine sources in compilation and make
509         depend steps
510
511         * configure.in: add checks for enabling the /dev/poll- and
512         kqueue-based engines
513
514         * acconfig.h: add lines for USE_DEVPOLL and USE_KQUEUE
515
516         * ircd/Makefile.in: work in the engine sources
517
518 2001-05-07  Kevin L. Mitchell  <klmitch@mit.edu>
519
520         * ircd/m_settime.c: include ircd_snprintf.h
521
522         * ircd/ircd_relay.c: stomp a couple of gcc warnings suggesting
523         parens around a construct that had both || and &&
524
525         * ircd/chkconf.c: #include "config.h" to get some important
526         definitions
527
528         * ircd/Makefile.in: revamp ircd makefile for new build system
529
530         * doc/Makefile.in: revamp doc makefile for new build system
531
532         * config/*: Removed old build system files
533
534         * stamp-h.in: a stamp file
535
536         * install-sh: install-sh for new build system
537
538         * configure.in: configure.in for new build system
539
540         * configure: configure script for new build system (built by
541         autoconf)
542
543         * config.sub: config.sub for new build system
544
545         * config.h.in: config.h.in for new build system (built by
546         autoheader)
547
548         * config.guess: config.guess for new build system
549
550         * aclocal.m4: aclocal.m4 for new build system (built by aclocal
551         1.4)
552
553         * acinclude.m4: aclocal.m4 macros for new build system
554
555         * acconfig.h: config.h skeleton for new build system
556
557         * Makefile.in: modify for new build system
558
559 2001-05-01  Kevin L. Mitchell  <klmitch@mit.edu>
560
561         * ircd/s_err.c: get rid of the last vestiges of TIME_T_FMT
562
563         * ircd/m_settime.c: get rid of the last vestiges of TIME_T_FMT
564
565         * ircd/m_server.c: get rid of the last vestiges of TIME_T_FMT
566
567 2001-05-01  Perry Lorier       <Isomer@coders.net>
568         * doc/iauth.doc: Protocol for iauth server. (from hybrid).
569         * doc/linux-poll.patch: Patch to make Linux under 2.2 not deadlock
570                 when you have far far too many sockets in use.
571         * {include,ircd}/iauth.c: A start on iauth support.
572
573 2001-05-01  Perry Lorier       <Isomer@coders.net>
574         * ircd/s_err.c: Suggested wording change.
575         * ircd/s_user.c: Users aren't target limited against +k users.
576         * ircd/chkconf.c: Made it compile again, who knows if it works, but
577                 now I can at least make install
578         * various: Cleanups on m_*.c files.
579
580
581 2001-04-23  Kevin L. Mitchell  <klmitch@mit.edu>
582
583         * ircd/s_misc.c (exit_client): make netsplit server notice say the
584         right thing
585
586         * ircd/m_links.c (m_links_redirect): forward-port RPL_ENDOFLINKS
587         change to make Khaled happy...
588
589         * ircd/m_whois.c (do_whois): pull-up of m_whois() fix
590         (do_whois): duh...
591
592 2001-04-21  Kevin L. Mitchell  <klmitch@mit.edu>
593
594         * ircd/msgq.c: finally remove the msgq_integrity() hack, as it's
595         turned up no more bugs
596
597         * ircd/ircd.c: use /* */ comments instead of // comments--all the
598         world's not gcc :(
599
600         * ircd/s_conf.c (conf_add_server): use /* */ comments instead of
601         // comments--all the world's not gcc :(
602
603         * ircd/runmalloc.c: finally garbage-collect unused file
604
605         * include/runmalloc.h: finally garbage-collect unused file
606
607         * ircd/<multiple files>: addition of '#include "config.h"' before
608         all other includes in most .c files
609
610         * include/<multiple files>: remove includes of config.h, which are
611         now going into the raw .c files
612
613 2001-04-20  Kevin L. Mitchell  <klmitch@mit.edu>
614
615         * ircd/m_whois.c (do_whois): display proper server name if the
616         user is looking up himself
617
618         * ircd/m_who.c (m_who): disable match by servername or display of
619         server names by non-opers
620
621         * include/ircd_policy.h: add define for
622         HEAD_IN_SAND_WHO_SERVERNAME to cover full intent of sub-motion 15
623         of CFV 165
624
625 2001-04-18  Kevin L. Mitchell  <klmitch@mit.edu>
626
627         * ircd/s_conf.c: keep the $R in memory so we can see it clearly
628         when we do a /stats k
629
630         * ircd/s_user.c (set_user_mode): pull-up of changes to prevent
631         users from turning on +s and +g
632
633         * ircd/s_misc.c (exit_client): pull-up of changes to turn off
634         net.split notice
635
636         * ircd/parse.c: pull-up of changes to disable /trace, /links, and
637         /map for users
638
639         * ircd/m_whois.c (do_whois): pull-up of server name masking for
640         /whois
641
642         * ircd/m_user.c (m_user): removal of umode and snomask defaulting
643         functions, pull-up
644
645         * ircd/m_stats.c (m_stats): pull-up of stats-disabling stuff
646
647         * ircd/m_map.c (m_map_redirect): pull-up of m_map_redirect()
648
649         * ircd/m_links.c (m_links_redirect): pull-up of m_links_redirect()
650
651         * ircd/channel.c (channel_modes): pull-up of channel key display
652         as *
653
654         * include/ircd_policy.h: pull-up of ircd_policy.h
655
656         * include/client.h: pull-up of Set/ClearServNotice()
657
658         * ircd/gline.c (do_gline): report client name in G-line message
659         (pull-up)
660
661         * ircd/s_user.c (register_user): pull-up--show IP address in some
662         server notices dealing only with users; report which connection
663         class has filled up
664
665         * ircd/s_stats.c (report_deny_list): use conf->flags &
666         DENY_FLAGS_IP insteaf of conf->ip_kill
667
668         * ircd/m_stats.c (report_klines): use conf->flags & DENY_FLAGS_IP
669         insteaf of conf->ip_kill
670
671         * ircd/s_conf.c: use flags field in struct DenyConf; pull-up of
672         K-line by real name
673
674         * include/s_conf.h: use a flags field in struct DenyConf; define
675         DENY_FLAGS_FILE, DENY_FLAGS_IP, and DENY_FLAGS_REALNAME for
676         pull-up of K-line by real name
677
678         * ircd/m_trace.c: pull-up of IP show for user connections
679
680         * doc/example.conf: pull-up of the realname K-line documentation
681
682         * ircd/ircd.c: forward port of pid file advisory locking mechanism
683
684 2001-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
685
686         * ircd/send.c (sendcmdto_flag_butone): recast to just broadcast to
687         all servers, rather than to only servers that have +w/+g/whatever
688         users on them; among other things, this removes that atrocity
689         known as sentalong[] from this function
690
691         * ircd/m_admin.c: must include ircd.h to declare "me"; must
692         include hash.h to declare FindUser()
693
694         * ircd/m_wallusers.c: implementation of WALLUSERS
695
696         * ircd/m_desynch.c (ms_desynch): only send DESYNCHs to opers
697
698         * ircd/m_wallops.c: only send WALLOPS to opers
699
700         * ircd/parse.c: add WALLUSERS command to parser table
701
702         * include/handlers.h: declare wallusers handlers
703
704         * include/msg.h: add WALLUSERS command
705
706         * ircd/send.c (sendcmdto_flag_butone): if FLAGS_OPER is or'd with
707         flag, send only to appropriate opers
708
709 2001-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
710
711         * ircd/uping.c: refit to use the new events interface
712
713         * ircd/res.c: refit to use the new events interface
714
715         * ircd/ircd_events.c: create timer_chg(), which permits a
716         (non-periodic) timer's expire time to be modified; change the
717         logic in timer_run() so that timers that were re-added while the
718         event was being processed will not be destroyed prematurely
719
720         * include/uping.h: include the events header, declare some extra
721         fields in struct UPing, remove timeout value, and define some
722         flags for marking which cleanup items have yet to be done
723
724         * include/ircd_events.h: add a prototype for timer_chg() to change
725         the expire time of a running timer
726
727 2001-03-13 Joseph Bongaarts <foxxe@wtfs.net>
728         * ircd/os_openbsd.c: Tweaked the openbsd hack a bit.
729         
730 2001-03-07  Joseph Bongaarts  <foxxe@wtfs.net>
731
732         * config/configure.in: Add check for OpenBSD
733
734         * ircd/os_openbsd.c: Add seperate os dep file for openbsd which
735         differs from generic BSD, particularly in its handling of
736         _XOPEN_SOURCE.
737         
738 2001-02-12  Kevin L. Mitchell  <klmitch@mit.edu>
739
740         * ircd/m_gline.c (ms_gline): propagate a G-line that happened to
741         have been added by a U-lined server, rather than going through the
742         activate/deactivate logic; propagate G-line removals by U-lined
743         servers as well
744
745         * ircd/gline.c: rename propagate_gline() to gline_propagate();
746         make gline_propagate() return an int 0 (convenience return); only
747         update lastmod in gline_activate() and gline_deactivate() if the
748         current lastmod is non-zero, since 0 lastmod is our flag of a
749         U-lined server having added a G-line
750
751         * include/gline.h (gline_propagate): exporting the G-line
752         propagation function
753
754         * ircd/m_list.c (m_list): duh; permit explicit channel name
755         specification only when /list gets two arguments ("Kev
756         #wasteland") rather than when /list gets more than two
757         arguments--nice braino
758
759 2001-01-29  Thomas Helvey <twhelvey1@home.com>
760
761         * ircd/ircd_reply.c (need_more_params): fix bug that allowed
762         unregistered clients to spam opers with protocol violation
763         messages. Note: the bugfix may have eliminated some useful
764         protocol violation messages.
765         Please send protocol violation messages explicitly from the
766         functions they are discovered in, you have much better context
767         for the error there and it helps to document the behavior of the
768         server. This was also a design bug in that it violated the
769         "A function should do one thing" heuristic. Patching this one
770         would have resulted in a continuous spawning of other bugs over
771         the next 3 years, so I killed it. Check around for stuff this
772         broke and readd the calls to protocol_violation in the functions
773         that need to send the message.
774
775 2001-01-29  Kevin L. Mitchell  <klmitch@mit.edu>
776
777         * ircd/channel.c (mode_parse_ban): stopper a tiny leak--if a ban
778         already existed, then the logic would (attempt to) skip it, but
779         would not free the ban string; now the ban string is free'd and
780         the ban count is decremented, releasing the ban for use
781
782         * ircd/s_user.c: make send_umode_out() take a prop argument
783         instead of testing for the PRIV_PROPAGATE privilege itself; fix
784         set_umode() to use this new argument, calculating it before
785         calculating the new privileges for a -o'd user
786
787         * ircd/m_oper.c (m_oper): pass the new prop argument to
788         send_umode_out()
789
790         * ircd/channel.c (mode_parse_ban): turn off MODE_ADD bit in bans
791         that we're not actually going to add because they already exist;
792         test that particular bit before adding to the linked list
793
794         * include/s_user.h: add a prop argument to send_umode_out() to
795         indicate whether or not to propagate the user mode
796
797 2001-01-24  Kevin L. Mitchell  <klmitch@mit.edu>
798
799         * ircd/msgq.c: ircd_vsnprintf() returns the number of bytes that
800         it would have written; upper-bound the number to prevent overflows
801         by proxy; also, tune buffer size given to ircd_vsnprintf() to take
802         into account the fact that ircd_vsnprintf() already takes the
803         terminal \0 into account
804
805 2001-01-22  Kevin L. Mitchell  <klmitch@mit.edu>
806
807         * ircd/msgq.c: add an incredibly ugly hack to attempt to track
808         down an apparent buffer overflow; remove msgq_map(), since it's no
809         longer used anywhere; slight tweaks to prevent off-by-one errors,
810         but these can't explain the problems we've seen
811
812         * include/msgq.h: remove msgq_map(), since it's no longer used
813         anywhere
814
815 2001-01-18  Kevin L. Mitchell  <klmitch@mit.edu>
816
817         * ircd/s_user.c (set_nick_name): call client_set_privs() after
818         parsing user modes
819
820 2001-01-17  Kevin L. Mitchell  <klmitch@mit.edu>
821
822         * ircd/s_bsd.c (read_message): fix a typo in the select version of
823         read_message()
824
825         * ircd/whowas.c (whowas_free): MyFree() is a macro that expects
826         its argument to be an lvalue, which means we can't use
827         whowas_clean()'s handy-dandy "return ww" feature
828
829         * ircd/ircd_features.c: default LOCOP_KILL to TRUE--oops...
830
831 2001-01-16  Kevin L. Mitchell  <klmitch@mit.edu>
832
833         * ircd/ircd_events.c (timer_run): it's possible that the timer got
834         deleted during the callback processing, so don't go to the bother
835         of requeuing it if the destroy flag is set
836
837         * ircd/engine_select.c: define FD_SETSIZE to be IRCD_FD_SETSIZE
838         out of config.h if this is a *BSD; include errno.h (oops);
839         decrement error count after an hour using a timer; use FD_SETSIZE
840         constant instead of IRCD_FD_SETSIZE constant; fill in event
841         processing code
842
843         * ircd/engine_poll.c: include errno.h (oops); decrement error
844         count after an hour using a timer; fill in event processing code
845
846         * ircd/engine_kqueue.c: include errno.h (oops); decrement error
847         count after an hour using a timer; assert events filter is either
848         EVFILT_READ or EVFILT_WRITE; fill in event processing code
849
850         * ircd/engine_devpoll.c: include errno.h (oops); decrement error
851         count after an hour using a timer; fill in event processing code
852
853 2001-01-15  Kevin L. Mitchell  <klmitch@mit.edu>
854
855         * ircd/client.c: fixed feattab; basically, when I changed features
856         to use small integers specifying bit positions, instead of the
857         bits themselves, I forgot to update feattab to not | these
858         privileges together; also fixed a bug in the antiprivs masking
859         loop in client_set_privs()--last index wouldn't get parsed
860
861 2001-01-11  Kevin L. Mitchell  <klmitch@mit.edu>
862
863         * ircd/ircd_events.c: call event_generate() with new data
864         argument; make it set that field in struct Event; make
865         socket_add() return the value of the eng_add callback
866
867         * ircd/engine_select.c: make engine_add() return a
868         successful/unsuccessful status; add bounds-checking outside of an
869         assert; use accessor macros; use log_write(), not the deprecated
870         ircd_log(); add an assert to engine_loop() to double-check for
871         data structure corruption
872
873         * ircd/engine_poll.c: make engine_add() return a
874         successful/unsuccessful status; add bounds-checking outside of an
875         assert; use accessor macros; use log_write(), not the deprecated
876         ircd_log(); add an assert to engine_loop() to double-check for
877         data structure corruption
878
879         * ircd/engine_kqueue.c: implementation of an engine for kqueue()
880
881         * ircd/engine_devpoll.c: implementation of an engine for /dev/poll
882
883         * include/ircd_events.h: define some accessor macros; add ev_data
884         to struct Event for certain important data--errno values, for
885         instance; make EngineAdd callback tell us if it was successful or
886         not; add extra argument to event_generate(); make socket_add()
887         return the status from EngineAdd
888
889 2001-01-10  Kevin L. Mitchell  <klmitch@mit.edu>
890
891         * ircd/ircd_events.c: pass initializer information about how many
892         total _filedescriptors_ may be opened at once
893
894         * ircd/ircd.c: use exported "running" instead of unexported
895         thisServer.running
896
897         * ircd/engine_select.c: implementation of an event engine based on
898         select()
899
900         * ircd/engine_poll.c: implementation of an event engine based on
901         poll()
902
903         * include/ircd_events.h: pass the engine initializer an integer
904         specifing how many _filedescriptors_ may be opened at once
905
906         * include/ircd.h: running has to be exported for the engine_*
907         event loops
908
909 2001-01-09  Kevin L. Mitchell  <klmitch@mit.edu>
910
911         * ircd/ircd_events.c: include some needed headers; add some
912         comments; make evEngines[] const; bundle sig_sock and sig_fd into
913         a struct named sigInfo; rework struct evInfo to have a queue of
914         _generators_, and only when threaded; added a gen_init() function
915         to centralize generator initialization; fix various compile-time
916         errors; rework event_add() for new queueing scheme and checked for
917         compile-time errors; add casts where needed; spell evEngines[]
918         correctly; make engine_name() return const char*
919
920         * include/ircd_events.h: type EventCallBack depends on struct
921         Event, so pre-declare it; put _event_ queue into generators, and
922         only when threaded; give engine data a union to store both ints
923         and pointers; make engine name a const; fix gen_ref_dec() macro;
924         make engine_name() return a const char*
925
926         * ircd/ircd_events.c: gen_dequeue() is now exported, so move it
927         down with the non-static functions; modify event_execute() to use
928         the new gen_ref_dec() to simplify code; make sure event_generate()
929         does not generate new events for generators marked for destruction
930
931         * include/ircd_events.h: the engines, at least, may need to modify
932         reference counts to keep generators from going away while
933         something still points at them, so add reference counter
934         manipulators and export gen_dequeue() for them
935
936         * ircd/ircd_events.c: set up the list of engines to try; set up
937         the signal struct Socket; rename netInfo to evInfo; move static
938         functions near the beginning of the file; do away with
939         signal_signal() (since we no longer keep a signal count ourselves)
940         and call event_generate() directly from signal_callback--also
941         renamed some functions; allow signal_callback() to read up to
942         SIGS_PER_SOCK at once from the signal pipe; add event_init() to
943         initialize the entire event system; add event_loop() to call the
944         engine's event loop; initialize new struct GenHeader member,
945         gh_engdata; remove timer_next(); add socket_add() function to add
946         a socket; add socket_del() to mark a socket for deletion; add
947         socket_state() to transition a socket between states; add
948         socket_events() to set what events we're interested in on the
949         socket; add engine_name() to retrieve event engine's name
950
951         * include/ircd_events.h: add engine data field to struct
952         GenHeader; rename SOCK_ACTION_REMOVE to SOCK_ACTION_DEL; add a
953         note about states vs s_events; remove signal count; fold union
954         Generator back into struct Event; remove count members from struct
955         Generators; redefine engine callbacks to not take a struct
956         Engine*; add explanatory comments to callback definitions; add
957         some engine callbacks to handle operations; remove struct Engine
958         flag member--can detect single flag from eng_signal member; add
959         event_init(), event_loop(), engine_name(), and the socket_*()
960         functions; make timer_next() a macro to avoid a function call
961
962 2001-01-08  Kevin L. Mitchell  <klmitch@mit.edu>
963
964         * include/ircd_events.h: rename to ircd_events.h, since it handles
965         events, not just networking stuff; add signal support; more
966         structural rearrangement
967
968         * ircd/ircd_events.c: rename to ircd_events.c, since it handles
969         events, not just networking stuff; add signal support; more
970         structural rearrangement
971
972 2001-01-07  Kevin L. Mitchell  <klmitch@mit.edu>
973
974         * ircd/ircd_network.c: implement timer API; add reference counts
975         appropriately
976
977         * include/ircd_network.h: firm up some pieces of the interface;
978         split out members everything has into a separate structure; add
979         reference counts; add timer API
980
981 2001-01-06  Kevin L. Mitchell  <klmitch@mit.edu>
982
983         * ircd/ircd_network.c: static data and event manipulation
984         functions for new event processing system
985
986         * include/ircd_network.h: data structures for new event processing
987         system
988
989 2001-01-03  Kevin L. Mitchell  <klmitch@mit.edu>
990
991         * ircd/whowas.c: Completely re-did the old allocation scheme by
992         turning it into a linked list, permitting the
993         NICKNAMEHISTORYLENGTH feature to be changed on the fly
994
995         * ircd/s_debug.c (count_memory): use FEAT_NICKNAMEHISTORYLENGTH
996         feature instead of old #define
997
998         * ircd/ircd_features.c: add NICKNAMEHISTORYLENGTH feature as an
999         integer feature with a notify callback (whowas_realloc)
1000
1001         * ircd/client.c (client_set_privs): second memset was supposed to
1002         be over antiprivs, not privs; thanks, Chris Behrens
1003         <cbehrens@xo.com> for pointing that out...
1004
1005         * include/whowas.h: new elements for an extra linked list in
1006         struct Whowas; a notify function for feature value changes
1007
1008         * include/ircd_features.h: new feature--FEAT_NICKNAMEHISTORYLENGTH
1009
1010         * config/config-sh.in: NICKNAMEHISTORYLENGTH is now a feature
1011
1012 2001-01-02  Kevin L. Mitchell  <klmitch@mit.edu>
1013
1014         * config/config-sh.in: get rid of DEFAULT_LIST_PARAMETER
1015         compile-time option--now in features subsystem
1016
1017         * ircd/motd.c (motd_init): rework motd_init() to be called as the
1018         notify function for MPATH and RPATH features (should probably
1019         split it up a bit, though...)
1020
1021         * ircd/m_privs.c (mo_privs): if called with no parameters, return
1022         privs of the caller, rather than an error
1023
1024         * ircd/m_list.c: pull usage message into its own function; pull
1025         list parameter processing into its own function that does not
1026         modify the contents of the parameter; add list_set_default() to
1027         set the default list parameter (uses the notify hook); rework
1028         m_list() to make use of these functions; removed dead code
1029
1030         * ircd/ircd_log.c (log_feature_mark): make sure to return 0, since
1031         we have no notify handler
1032
1033         * ircd/ircd_features.c: add notify callback for notification of
1034         value changes; give mark callback an int return value to indicate
1035         whether or not to call the notify callback; fix up feature macros
1036         for new notify callback; add DEFAULT_LIST_PARAM feature; rewrite
1037         string handling in feature_set() to deal with def_str being a null
1038         pointer; wrote feature_init() to set up all defaults appropriately
1039
1040         * ircd/ircd.c (main): call feature_init() instead of
1041         feature_mark(), to avoid calling notify functions while setting up
1042         defaults
1043
1044         * ircd/client.c: updated to deal with new privileges structure
1045
1046         * ircd/class.c: updated so init_class() can be called should one
1047         of PINGFREQUENCY, CONNECTFREQUENCY, MAXIMUM_LINKS, or
1048         DEFAULTMAXSENDQLENGTH be changed
1049
1050         * include/ircd_log.h: log_feature_mark() updated to fit with new
1051         API changes
1052
1053         * include/ircd_features.h: added DEFAULT_LIST_PARAM feature and
1054         feature_init() function (found necessary since adding the notify
1055         stuff and notifying motd.c during start-up...before we defined
1056         RPATH!)
1057
1058         * include/client.h: move privs around to enable addition of more
1059         bits if necessary; based on the FD_* macros
1060
1061         * include/channel.h: declare list_set_default (actually located in
1062         m_list.c *blanche*)
1063
1064         * ircd/s_user.c: retrieve MAXSILES and MAXSILELENGTH (now
1065         AVBANLEN*MAXSILES) from features subsystem
1066
1067         * ircd/s_debug.c (debug_serveropts): CMDLINE_CONFIG doesn't go to
1068         anything anymore
1069
1070         * ircd/s_bsd.c: retrieve HANGONGOODLINK and HANGONRETRYDELAY from
1071         the features subsystem
1072
1073         * ircd/s_auth.c (start_auth): NODNS migrated to the features
1074         subsystem
1075
1076         * ircd/random.c: created random_seed_set() function to set seed
1077         value, along with some stuff to make ircrandom() a little more
1078         random--state preserving, xor of time instead of direct usage,
1079         etc.; it's still a pseudo-random number generator, though, and
1080         hopefully I haven't broken the randomness
1081
1082         * ircd/m_version.c: FEATUREVALUES makes use of feature_int() calls
1083
1084         * ircd/m_join.c: use features interface to retrieve
1085         MAXCHANNELSPERUSER
1086
1087         * ircd/ircd_features.c: add NODISP flag for super-secret features;
1088         add a whole bunch of new features migrated over from make config
1089
1090         * ircd/ircd.c: use features interface to retrieve PINGFREQUENCY,
1091         CONNECTTIMEOUT, and TIMESEC
1092
1093         * ircd/client.c (client_get_ping): use features interface to
1094         retrieve PINGFREQUENCY
1095
1096         * ircd/class.c: use features interface to retrieve PINGFREQUENCY,
1097         CONNECTFREQUENCY, MAXIMUM_LINKS, and DEFAULTMAXSENDQLENGTH
1098
1099         * ircd/chkconf.c (DEFAULTMAXSENDQLENGTH): since it's now in the
1100         features subsystem, we have to add something explicit
1101
1102         * ircd/channel.c: use features interface to retrieve
1103         KILLCHASETIMELIMIT, MAXBANLENGTH, MAXBANS, and MAXCHANNELSPERUSER;
1104         note that MAXBANLENGTH is now calculated dynamically from MAXBANS
1105         and AVBANLEN
1106
1107         * ircd/Makefile.in: run make depend
1108
1109         * include/supported.h (FEATURESVALUES): update to reference
1110         feature settings
1111
1112         * include/random.h: add prototype for random_seed_set
1113
1114         * include/ircd_features.h: add several more features
1115
1116         * include/channel.h: move MAXBANS and MAXBANLENGTH into feature
1117         subsystem
1118
1119         * config/config-sh.in: feature-ized some more stuff
1120
1121         * include/motd.h: some new elements in motd.h for motd.c changes
1122
1123         * ircd/motd.c: motd_cache() now searches a list of already cached
1124         MOTD files; saves us from having duplicate caches in memory if
1125         there are two identical T-lines for two different sites...
1126
1127 2001-01-02  Perry Lorier <isomer@coders.net>
1128         * ircd/motd.c: don't core if the motd isn't found.  Bug found by
1129         Amarande.
1130
1131 2001-01-02  Perry Lorier <isomer@coders.net>
1132         * ircd/s_err.c: Added third param to 004 - the channel modes that tage params.  Used by hybrid/epic.
1133         * ircd/s_channels.c: Added fix for msg'ing a -n+m channel - thanks
1134                 to guppy for noticing, and hektik for providing the fix.
1135         * misc others: Minor cleanups, added more protocol_violations, ripped
1136                 out more P09 stuffs, bit more protocol neg stuff.
1137
1138 2000-12-19  Kevin L. Mitchell  <klmitch@mit.edu>
1139
1140         * ircd/m_ison.c (m_ison): Dianora says that ISON has to end with a
1141         space (*sigh* stupid clients...)
1142
1143         * ircd/s_user.c: make WALLOPS_OPER_ONLY a feature managed through
1144         ircd_features.[ch]
1145
1146         * ircd/s_err.c: get rid of GODMODE conditionals
1147
1148         * ircd/s_debug.c (debug_serveropts): switch to using appropriate
1149         calls into the features subsystem for various serveropts
1150         characters
1151
1152         * ircd/s_conf.c (find_conf_entry): get rid of USEONE conditional
1153
1154         * ircd/s_bsd.c: remove GODMODE conditional; use features subsystem
1155         to get value of VIRTUAL_HOST and CLIENT_FLOOD; remove
1156         NOFLOWCONTROL conditional
1157
1158         * ircd/s_auth.c: use features subsystem to determine value of
1159         KILL_IPMISMATCH
1160
1161         * ircd/parse.c: get rid of NOOPER and GODMODE conditionals; use
1162         features subsystem to determine the setting of IDLE_FROM_MSG
1163
1164         * ircd/numnicks.c: get rid of EXTENDED_NUMERICS conditionals
1165
1166         * ircd/motd.c: get value of NODEFAULTMOTD from features subsystem;
1167         use features subsystem to get motd file names
1168
1169         * ircd/m_settime.c: get value of RELIABLE_CLOCK from features
1170         subsystem
1171
1172         * ircd/m_server.c: get rid of CRYPT_LINK_PASSWORD, since it does
1173         us no good; use features subsystem to figure out if we need to do
1174         HUB-type stuff; make TESTNET debugging sendto_opmask_butone's use
1175         the Debug(()) macro instead; get value of RELIABLE_CLOCK from
1176         features subsystem
1177
1178         * ircd/m_privmsg.c: get IDLE_FROM_MSG from the features subsystem
1179
1180         * ircd/m_oper.c: get CRYPT_OPER_PASSWORD from the features
1181         subsystem
1182
1183         * ircd/m_connect.c: get SERVER_PORT from the features subsystem
1184
1185         * ircd/ircd_log.c (log_set_file): fix a bug that kept log files
1186         from getting marked if they were already set to something...
1187
1188         * ircd/ircd_features.c: add a flag to indicates read-only access;
1189         add several new features that used to be compile-time selected
1190
1191         * ircd/ircd.c: grab pidfile out of feature subsystem; don't check
1192         access to motd files (what the heck?); make sure to initialize the
1193         feature subsystem before trying to write the config file
1194
1195         * ircd/dbuf.c: use feature_int() to retrieve BUFFERPOOL settings;
1196         use feature_bool() to figure out if we're using the FERGUSON
1197         flusher
1198
1199         * ircd/Makefile.in: MPATH and RPATH are now done differently, so
1200         remove the clause that creates empty files of that name; also ran
1201         make depend
1202
1203         * include/sys.h: CLIENT_FLOOD is now a feature; unfortunately,
1204         there is no easy way to bounds-check it at present
1205
1206         * include/querycmds.h: make sure ircd_features.h is included; use
1207         feature_str(FEAT_DOMAINNAME) in calls to match()
1208
1209         * include/ircd_features.h: many new features that used to be
1210         compile-time selected
1211
1212         * config/config-sh.in: add * to DOMAINNAME; try also using first
1213         argument to search in /etc/resolv.conf; removed many compile-time
1214         options that now can be configured through the features system
1215
1216 2000-12-18  Kevin L. Mitchell  <klmitch@mit.edu>
1217
1218         * doc/api/log.txt: how to use the logging API
1219
1220         * doc/api/features.txt: how to use the features API
1221
1222         * doc/api/api.txt: how to write API documentation
1223
1224         * include/ircd_features.h: rearranged a couple of features for
1225         neatness purposes
1226
1227         * ircd/ircd_features.c: cleaned up the macros some; rearranged
1228         some code to all go into the switch; rearranged a couple of
1229         features for neatness purposes
1230
1231 2000-12-16  Greg Sikorski <gte@atomicrevs.demon.co.uk>
1232         * ircd/os_bsd.c: Added os_set_tos for BSD users.
1233
1234 2000-12-16  Kevin L. Mitchell  <klmitch@mit.edu>
1235
1236         * ircd/ircd_features.c: Isomer almost got it right; you need to
1237         use F_I(), since it's an integer value, not a boolean value.  The
1238         asserts in feature_int would catch you out...  Also made the F_*
1239         macros take flags
1240
1241         * ircd/s_err.c: define RPL_PRIVS reply
1242
1243         * ircd/parse.c: put new PRIVS command into command table
1244
1245         * ircd/m_privs.c (mo_privs): message handler to report operator
1246         privileges
1247
1248         * ircd/ircd_features.c: declare new features OPER_SET and
1249         LOCOP_SET; redo boolean testing routine to accept TRUE, YES, and
1250         ON for boolean TRUE, and FALSE, NO, and OFF for boolean FALSE
1251
1252         * ircd/client.c: simplify client_set_privs() with a table that
1253         defines what features to test for; add new client_report_privs()
1254
1255         * ircd/Makefile.in: compile new m_privs.c; run make depend
1256
1257         * include/numeric.h (RPL_PRIVS): new reply numeric for displaying
1258         an operator's privileges
1259
1260         * include/msg.h: define new command: PRIVS
1261
1262         * include/ircd_features.h: create new features OPER_SET and
1263         LOCOP_SET for controlling access to /set
1264
1265         * include/handlers.h (mo_privs): declare message handler for
1266         reporting oper privileges
1267
1268         * include/client.h (client_report_privs): declare function to
1269         report what privileges an oper has
1270
1271         * ircd/m_whois.c (do_whois): fix a bug that caused /whois to
1272         report that a user is an oper if the oper doing the /whois had
1273         PRIV_SEE_OPERS
1274
1275 2000-12-17  Isomer <Isomer@coders.net>
1276         * ircd/listener.c: added support for TOS twiddling as a 'feature'.
1277
1278 2000-12-17  Isomer <Isomer@coders.net>
1279         * ircd/os_linux.c: add TOS stuffs
1280
1281         * ircd/listener.c: add TOS stuffs
1282
1283 2000-12-16  Kevin L. Mitchell  <klmitch@mit.edu>
1284
1285         * ircd/whocmds.c (do_who): use HasPriv to determine whether or not
1286         to indicate a user is an oper
1287
1288         * ircd/s_user.c: clear privileges setting when deopping; don't
1289         propagate +o unless user has PRIV_PROPAGATE privilege
1290
1291         * ircd/s_debug.c (debug_serveropts): created debug_serveropts()
1292         function and replaced how the server option string is generated
1293
1294         * ircd/parse.c: remove conditional on CONFIG_OPERCMDS
1295
1296         * ircd/m_whois.c (do_whois): use HasPriv to determine whether or
1297         not to indicate the user is an operator
1298
1299         * ircd/m_who.c: use HasPriv to determine whether or not a user
1300         should be displayed in the list of opers
1301
1302         * ircd/m_version.c: call debug_serveropts() to get server option
1303         string
1304
1305         * ircd/m_userip.c (userip_formatter): use HasPriv to determine
1306         whether or not to show oper status
1307
1308         * ircd/m_userhost.c (userhost_formatter): use HasPriv to determine
1309         whether or not to show oper status
1310
1311         * ircd/m_restart.c (mo_restart): replace ugly #ifdef conditional
1312         checks with HasPriv check; remove dead code
1313
1314         * ircd/m_rehash.c (mo_rehash): replace ugly #ifdef conditional
1315         checks with HasPriv check
1316
1317         * ircd/m_opmode.c (mo_opmode): use HasPriv to check permissions;
1318         use feature_bool to check if disabled
1319
1320         * ircd/m_oper.c (m_oper): set oper priviliges
1321
1322         * ircd/m_mode.c (m_mode): replace #ifdef conditional with HasPriv
1323         check
1324
1325         * ircd/m_kill.c (mo_kill): use HasPriv checks to determine if we
1326         can kill
1327
1328         * ircd/m_kick.c (m_kick): replace #ifdef conditional with HasPriv
1329         check
1330
1331         * ircd/m_jupe.c (mo_jupe): rework permissions checking structure;
1332         use feature_bool to check if disabled
1333
1334         * ircd/m_join.c (m_join): remove BADCHAN conditional; replace
1335         #ifdef conditional with a HasPriv check
1336
1337         * ircd/m_gline.c (mo_gline): rework permissions checking
1338         structure; use feature_bool to check if any part is disabled
1339
1340         * ircd/m_die.c: replace ugly #ifdef conditionals with HasPriv
1341         check; remove dead code
1342
1343         * ircd/m_clearmode.c: use feature_bool() to detect if we're
1344         disabled; use HasPriv to figure out what we're permitted to do;
1345         only allow clearmode on moded channels
1346
1347         * ircd/ircd_features.c: define various features; use HasPriv to
1348         verify permissions to set/reset
1349
1350         * ircd/gline.c (gline_add): use HasPriv instead of #ifdef
1351         conditionals
1352
1353         * ircd/client.c (client_set_privs): function to set an oper's
1354         privileges
1355
1356         * ircd/channel.c: use HasPriv calls instead of #ifdef conditionals
1357
1358         * include/whocmds.h: deconditionalize several macros and
1359         substitute appropriate calls to HasPriv()
1360
1361         * include/s_debug.h: get rid of global serveropts[]; define new
1362         function debug_serveropts() to build that string on the fly
1363
1364         * include/ircd_features.h: define some features
1365
1366         * include/client.h: add privs member to struct Connection; define
1367         various priviledges
1368
1369         * include/channel.h: no longer using IsOperOnLocalChannel; remove
1370         conditional of MAGIC_OPER_OVERRIDE on OPER_WALK_THROUGH_LMODES
1371
1372         * doc/Configure.help: remove help information for deprecated
1373         options
1374
1375         * config/config-sh.in: remove certain deprecated options having to
1376         do with what opers can and cannot do--first stage in moving
1377         compile-time constants into the .conf
1378
1379 2000-12-16  Isomer <Isomer@coders.net>
1380         * ircd/parse.c: detect if the prefix is missing and try and recover
1381         instead of coring.
1382
1383 2000-12-15  Kevin L. Mitchell  <klmitch@mit.edu>
1384
1385         * ircd/ircd_log.c: found and fixed some bugs in the debug logging
1386         code that would sometimes result in the log file not being
1387         reopened--which meant that a user could connect and get the
1388         logging output--oops
1389
1390         * ircd/Makefile.in: run make depend...
1391
1392         * ircd/s_stats.c: get rid of report_feature_list()
1393
1394         * ircd/s_err.c: add the 'bad value' error message, shift error
1395         messages over somewhat
1396
1397         * ircd/s_debug.c (debug_init): call log_debug_init with the
1398         use_tty flag
1399
1400         * ircd/s_conf.c (read_configuration_file): unmark features before
1401         reading the config file, then reset unmarked features after
1402         reading the config file
1403
1404         * ircd/m_stats.c: use feature_report() instead of
1405         report_feature_list()
1406
1407         * ircd/ircd_log.c: fix log_debug_file (bogus assertion); add
1408         special 'mark' flags and use them; add the stuff needed by the
1409         features API
1410
1411         * ircd/ircd_features.c: rework the features API and add gobs of
1412         comments to try to explain what some of these complex functions
1413         are actually doing
1414
1415         * include/s_stats.h: get rid of report_feature_list(); use
1416         feature_report() instead
1417
1418         * include/numeric.h: added a new error message and shifted old
1419         values over some--this is, after all, an alpha
1420
1421         * include/ircd_log.h: log_debug_init now takes an integer to tell
1422         it if it should be using the tty; added a couple of functions
1423         required by the features API
1424
1425         * include/ircd_features.h: add an enum and some more functions to
1426         flesh out the feature API--it should now be possible to put all
1427         those compile-time constants in the config file!
1428
1429         * ircd/send.c: got the direction of the assert incorrect...
1430
1431         * ircd/send.c: implement the efficiency of flush_connections by
1432         creating a linked list of struct Connection's with queued data;
1433         also get rid of flush_sendq_except and make sure to yank
1434         connections out of the list when their sendQs become empty (notice
1435         the assertion in flush_connections!)
1436
1437         * ircd/s_bsd.c (close_connection): must yank the Connection out of
1438         the sendq list
1439
1440         * ircd/list.c (dealloc_connection): must yank the Connection out
1441         of the sendq list
1442
1443         * ircd/dbuf.c (dbuf_put): call flush_connections instead of the
1444         deprecated flush_sendq_except
1445
1446         * ircd/client.c: define a couple new helper functions for sendq
1447         threading--this will make the flush_connections function in send.c
1448         considerably more efficient by creating a linked list of
1449         Connections that have queued data to send
1450
1451         * include/send.h: remove flush_sendq_except, as it's not used
1452         anymore
1453
1454         * include/client.h: declare a couple new helper functions for the
1455         sendq threading system
1456
1457 2000-12-14  Kevin L. Mitchell  <klmitch@mit.edu>
1458
1459         * ircd/m_ison.c (m_ison): Apply Diane Bruce's patch to make ISON
1460         parse all arguments
1461
1462         * ircd/s_debug.c (count_memory): modify to report for clients and
1463         connections, not local clients and remote clients
1464
1465         * ircd/list.c: fiddle with the client-fiddling functions to take
1466         into account the divorce of struct Connection from struct Client
1467
1468         * ircd/ircd.c: define a struct Connection for me, initialize it,
1469         and link it into the right place (ewww, globals!)
1470
1471         * include/client.h: remove CLIENT_{LOCAL,REMOTE}_SIZE; split
1472         struct Client into struct Client and struct Connection; redefine
1473         local-portion accessor macros to go through struct Client to the
1474         struct Connection; define struct Connection accessor macros
1475
1476 2000-12-13  Kevin L. Mitchell  <klmitch@mit.edu>
1477
1478         * ircd/whowas.c: missed a couple of accesses to a struct Client
1479
1480         * ircd/uping.c: missed a couple of accesses to a struct Client
1481
1482         * ircd/send.c: missed a couple of accesses to a struct Client
1483
1484         * ircd/s_user.c: missed a couple of accesses to a struct Client
1485
1486         * ircd/s_misc.c: missed a couple of accesses to a struct Client
1487
1488         * ircd/s_conf.c: missed a couple of accesses to a struct Client
1489
1490         * ircd/s_bsd.c: missed a couple of accesses to a struct Client
1491
1492         * ircd/s_auth.c: missed a couple of accesses to a struct Client
1493
1494         * ircd/res.c: missed a couple of accesses to a struct Client
1495
1496         * ircd/parse.c: missed a couple of accesses to a struct Client
1497
1498         * ircd/m_whois.c: use new accessor macros for struct Client
1499
1500         * ircd/m_who.c: use new accessor macros for struct Client
1501
1502         * ircd/m_wallchops.c: use new accessor macros for struct Client
1503
1504         * ircd/m_version.c: use new accessor macros for struct Client
1505
1506         * ircd/m_userip.c: use new accessor macros for struct Client
1507
1508         * ircd/m_userhost.c: use new accessor macros for struct Client
1509
1510         * ircd/m_user.c: use new accessor macros for struct Client
1511
1512         * ircd/m_uping.c: use new accessor macros for struct Client
1513
1514         * ircd/m_trace.c: use new accessor macros for struct Client
1515
1516         * ircd/m_topic.c: use new accessor macros for struct Client
1517
1518         * ircd/m_time.c: use new accessor macros for struct Client
1519
1520         * ircd/m_stats.c: use new accessor macros for struct Client
1521
1522         * ircd/m_squit.c: use new accessor macros for struct Client
1523
1524         * ircd/m_silence.c: use new accessor macros for struct Client
1525
1526         * ircd/m_server.c: use new accessor macros for struct Client;
1527         remove dead code
1528
1529         * ircd/m_rpong.c: use new accessor macros for struct Client
1530
1531         * ircd/m_rping.c: use new accessor macros for struct Client
1532
1533         * ircd/m_quit.c: use new accessor macros for struct Client
1534
1535         * ircd/m_privmsg.c: use new accessor macros for struct Client
1536
1537         * ircd/m_pong.c: use new accessor macros for struct Client; remove
1538         dead code
1539
1540         * ircd/m_ping.c: use new accessor macros for struct Client
1541
1542         * ircd/m_pass.c: use new accessor macros for struct Client
1543
1544         * ircd/m_part.c: use new accessor macros for struct Client
1545
1546         * ircd/m_oper.c: use new accessor macros for struct Client
1547
1548         * ircd/m_notice.c: use new accessor macros for struct Client
1549
1550         * ircd/m_nick.c: use new accessor macros for struct Client
1551
1552         * ircd/m_names.c: use new accessor macros for struct Client
1553
1554         * ircd/m_mode.c: use new accessor macros for struct Client
1555
1556         * ircd/m_map.c: use new accessor macros for struct Client
1557
1558         * ircd/m_list.c: use new accessor macros for struct Client
1559
1560         * ircd/m_links.c: use new accessor macros for struct Client;
1561         remove some dead code
1562
1563         * ircd/m_kill.c: use new accessor macros for struct Client; remove
1564         some dead code
1565
1566         * ircd/m_kick.c: use new accessor macros for struct Client
1567
1568         * ircd/m_join.c: use new accessor macros for struct Client; remove
1569         some dead code
1570
1571         * ircd/m_ison.c: use new accessor macros for struct Client
1572
1573         * ircd/m_invite.c: use new accessor macros for struct Client
1574
1575         * ircd/m_info.c: use new accessor macros for struct Client
1576
1577         * ircd/m_gline.c: use new accessor macros for struct Client
1578
1579         * ircd/m_error.c: use new accessor macros for struct Client
1580
1581         * ircd/m_create.c: use new accessor macros for struct Client
1582
1583         * ircd/m_connect.c: use new accessor macros for struct Client;
1584         removed some dead code
1585
1586         * ircd/m_burst.c: use new accessor macros for struct Client
1587
1588         * ircd/m_away.c: use new accessor macros for struct Client
1589
1590         * ircd/m_admin.c: use new accessor macros for struct Client
1591
1592         * ircd/hash.c: missed a couple of accesses to a struct Client
1593
1594         * ircd/gline.c: missed a couple of accesses to a struct Client
1595
1596         * ircd/crule.c: missed a couple of accesses to a struct Client
1597
1598         * ircd/class.c: missed an access to a struct Client
1599
1600         * ircd/channel.c: missed a couple of accesses to a struct Client
1601
1602         * ircd/IPcheck.c: missed an access to a struct Client
1603
1604         * include/querycmds.h: fix a couple of stats macros to use
1605         structure accessor macros
1606
1607         * include/client.h: change structure member names to highlight any
1608         places in the code I've missed
1609
1610 2000-12-12  Kevin L. Mitchell  <klmitch@mit.edu>
1611
1612         * ircd/whowas.c: use new struct Client accessor macros
1613
1614         * ircd/whocmds.c: use new struct Client accessor macros
1615
1616         * ircd/send.c: use new struct Client accessor macros
1617
1618         * ircd/s_user.c: use new struct Client accessor macros; removed
1619         some dead code
1620
1621         * ircd/s_serv.c: use new struct Client accessor macros; removed
1622         some dead code
1623
1624         * ircd/s_numeric.c: use new struct Client accessor macros
1625
1626         * ircd/s_misc.c: use new struct Client accessor macros
1627
1628         * ircd/s_debug.c: use new struct Client accessor macros
1629
1630         * ircd/s_conf.c: use new struct Client accessor macros
1631
1632         * ircd/s_bsd.c: use new struct Client accessor macros
1633
1634         * ircd/s_auth.c: use new struct Client accessor macros
1635
1636         * ircd/parse.c: use new struct Client accessor macros
1637
1638         * ircd/packet.c: use new struct Client accessor macros
1639
1640         * ircd/numnicks.c: use new struct Client accessor macros
1641
1642         * ircd/motd.c: use new struct Client accessor macros
1643
1644         * ircd/listener.c: use new struct Client accessor macros
1645
1646         * ircd/list.c: use new struct Client accessor macros
1647
1648         * ircd/jupe.c: use new struct Client accessor macros
1649
1650         * ircd/ircd_snprintf.c: use new struct Client accessor macros
1651
1652         * ircd/ircd_reply.c: use new struct Client accessor macros
1653
1654         * ircd/ircd_relay.c: use new struct Client accessor macros
1655
1656         * ircd/ircd.c: use new struct Client accessor macros
1657
1658         * ircd/gline.c: catch some instances of me.<stuff> I missed
1659         previously
1660
1661         * ircd/client.c: use cli_ instead of con_
1662
1663         * ircd/class.c: use cli_ instead of con_
1664
1665         * ircd/channel.c: use cli_ instead of con_
1666
1667         * ircd/IPcheck.c: use cli_ instead of con_; catch some instances
1668         of me.<stuff> I missed previously
1669
1670         * include/client.h: use cli_ instead of con_...seemed like a good
1671         idea at the time *shrug*
1672
1673 2000-12-11  Kevin L. Mitchell  <klmitch@mit.edu>
1674
1675         * ircd/hash.c: use struct Client accessor macros
1676
1677         * ircd/gline.c: use struct Client accessor macros
1678
1679         * ircd/crule.c: use struct Client accessor macros
1680
1681         * ircd/client.c: use struct Client accessor macros; remove some
1682         dead code
1683
1684         * ircd/class.c: use struct Client accessor macros
1685
1686         * ircd/channel.c: use struct Client accessor macros; remove some
1687         dead code
1688
1689         * ircd/IPcheck.c: use struct Client accessor macros
1690
1691         * include/numnicks.h: use struct Client accessor macros
1692
1693         * include/client.h: first step to divorcing struct Client and
1694         struct Connection--define accessor macros and use them
1695
1696         * ircd/gline.c: When Uworld removed Uworld-set G-lines, only the
1697         uplink would remove them.  This is because the removal protocol
1698         message wasn't being sent to the uplinks.  This is fixed by fixing
1699         propagate_gline() to send the proper number of arguments depending
1700         on whether or not we're adding or deleting the Uworld gline, and
1701         by having gline_deactivate() make sure to turn off the active bit
1702         and call propagate_gline() if it's a Uworld gline
1703
1704 2000-12-10  Kevin L. Mitchell  <klmitch@mit.edu>
1705
1706         * ircd/os_generic.c: make sure IOV_MAX gets defined, just in case
1707
1708         * ircd/os_bsd.c: apparently BSD doesn't have IOV_MAX defined
1709         anywhere intelligent...
1710
1711 2000-12-09  Kevin L. Mitchell  <klmitch@mit.edu>
1712
1713         * ircd/send.c (send_queued): call deliver_it with appropriate
1714         arguments
1715
1716         * ircd/s_serv.c: reorder a couple of headers--cosmetic
1717
1718         * ircd/s_bsd.c (deliver_it): make deliver_it work with a struct
1719         MsgQ
1720
1721         * ircd/os_solaris.c (os_sendv_nonb): function for calling writev
1722         with appropriate iovec
1723
1724         * ircd/os_linux.c (os_sendv_nonb): function for calling writev
1725         with appropriate iovec
1726
1727         * ircd/os_generic.c (os_sendv_nonb): function for calling writev
1728         with appropriate iovec
1729
1730         * ircd/os_bsd.c (os_sendv_nonb): function for calling writev with
1731         appropriate iovec
1732
1733         * ircd/msgq.c (msgq_mapiov): add a len_p argument for totalling up
1734         exactly how much we're trying to write out to the fd
1735
1736         * include/s_bsd.h: make deliver_it take a struct MsgQ
1737
1738         * include/msgq.h: add a len_p argument to msgq_mapiov to help
1739         detect short writes that indicate possible socket blocking
1740
1741         * include/ircd_osdep.h: declare os_sendv_nonb()
1742
1743         * ircd/channel.c (modebuf_mode): don't add empty modes...
1744
1745 2000-12-08  Kevin L. Mitchell  <klmitch@mit.edu>
1746
1747         * include/send.h: add prio argument to send_buffer to select
1748         between normal and priority queues
1749
1750         * ircd/s_user.c (send_user_info): add prio argument to send_buffer
1751         call
1752
1753         * ircd/m_ison.c (m_ison): add prio argument to send_buffer call
1754
1755         * ircd/ircd_reply.c (send_reply): add prio argument to send_buffer
1756         call
1757
1758         * ircd/channel.c (send_channel_modes): add prio argument to
1759         send_buffer call
1760
1761         * ircd/send.c (send_buffer): add a prio argument to select the
1762         priority queue; update send.c functions to use it
1763
1764         * ircd/msgq.c (msgq_add): remove msgq_prio; fold msgq_link and
1765         msgq_add; add a prio argument to msgq_add to select the priority
1766         queue
1767
1768         * include/msgq.h: remove msgq_prio; add a prio argument to
1769         msgq_add
1770
1771         * ircd/send.c: remove sendbuf; remove GODMODE code; switch to
1772         using msgq functions instead of dbuf functions; remove old, dead
1773         sendto_* functions; redo send_buffer to take a struct MsgBuf;
1774         rework sendcmdto_* functions to make use of the new struct MsgBuf
1775
1776         * ircd/s_user.c: remove hunt_server; restructure send_user_info to
1777         make appropriate use of struct MsgBuf
1778
1779         * ircd/s_debug.c (count_memory): count memory used by the MsgQ
1780         system and report it
1781
1782         * ircd/s_conf.c (read_configuration_file): use
1783         sendto_opmask_butone instead of the now dead sendto_op_mask
1784
1785         * ircd/s_bsd.c: switch to using appropriate MsgQLength and other
1786         calls on sendQ
1787
1788         * ircd/parse.c (parse_server): get rid of a piece of GODMODE code
1789
1790         * ircd/msgq.c: add msgq_append and msgq_bufleft; fix a bug in
1791         msgq_clean
1792
1793         * ircd/m_version.c: fix spelling in comments marking dead code
1794
1795         * ircd/m_userip.c (userip_formatter): restructure to make use of
1796         struct MsgBuf
1797
1798         * ircd/m_userhost.c (userhost_formatter): restructure to make use
1799         of struct MsgBuf
1800
1801         * ircd/m_stats.c: use MsgQLength on a sendQ
1802
1803         * ircd/m_settime.c: use MsgQLength instead of DBufLength on a
1804         sendQ; mark a piece of dead code
1805
1806         * ircd/m_names.c: use send_reply instead of sendto_one
1807
1808         * ircd/m_mode.c: use new mode; remove old dead code
1809
1810         * ircd/m_ison.c (m_ison): restructure to make use of struct MsgBuf
1811
1812         * ircd/m_burst.c: use BUFSIZE instead of IRC_BUFSIZE; remove old
1813         dead code
1814
1815         * ircd/listener.c (accept_connection): use sendto_opmask_butone
1816         instead of sendto_op_mask
1817
1818         * ircd/list.c (free_client): use MsgQClear to clear sendQ
1819
1820         * ircd/ircd_reply.c: remove send_error_to_client; restructure
1821         send_reply to make use of struct MsgBuf
1822
1823         * ircd/dbuf.c (dbuf_put): remove argument to flush_sendq_except,
1824         since its no longer used (at least currently)
1825
1826         * ircd/channel.c: restructure send_channel_modes to make use of
1827         struct MsgBuf; remove set_mode, add_token_to_sendbuf, cancel_mode,
1828         and send_hack_notice; use BUFSIZE instead of IRC_BUFSIZE
1829
1830         * ircd/Makefile.in: add msgq.c to list of sources; run make depend
1831
1832         * ircd/IPcheck.c: use sendcmdto_one instead of sendto_one
1833
1834         * include/send.h: send_buffer now takes a struct MsgBuf * instead
1835         of a char *; flush_sendq_except now takes no arguments, as sendq
1836         flushing currently only happens in dbuf.h and sendQ is a struct
1837         MsgQ; remove prototypes for a lot of old sendto_* functions that
1838         aren't used anymore; remove sendbuf and IRC_BUFSIZE--the former is
1839         no longer needed, and the latter is identical to BUFSIZE in
1840         ircd_defs.h
1841
1842         * include/s_user.h: make InfoFormatter take a struct MsgBuf*
1843         instead of a char *; also make it return void, instead of char *
1844
1845         * include/msgq.h: add msgq_append and msgq_bufleft functions
1846
1847         * include/client.h: use a struct MsgQ instead of a struct DBuf for
1848         sendq
1849
1850         * doc/Configure.help: Remove help for compile-time options that
1851         have gone away
1852
1853         * config/config-sh.in: remove CONFIG_NEWMODE
1854
1855         * ircd/m_server.c (mr_server): don't send server IPs in any server
1856         notices
1857
1858         * ircd/msgq.c (msgq_vmake): add \r\n to messages
1859
1860 2000-12-07  Kevin L. Mitchell  <klmitch@mit.edu>
1861
1862         * include/msgq.h: declare the MsgQ API
1863
1864         * ircd/msgq.c: implementation of new MsgQ system
1865
1866 2000-12-06  Kevin L. Mitchell  <klmitch@mit.edu>
1867
1868         * ircd/ircd_features.c: #include was supposed to be for
1869           ircd_features.h, not features.h--missed when I had to do a
1870           rename because of namespace collision
1871
1872 2000-12-05  Greg Sikorski <gte@atomicrevs.demon.co.uk>
1873         * ircd/m_topic.c: Added missing braces that caused all remote
1874           topics to be ignored.
1875
1876 2000-12-04  Kevin L. Mitchell  <klmitch@mit.edu>
1877
1878         * ircd/m_create.c: I'm tired of the exit_client warning :)
1879         (ms_create): discovered that exit_client() was being called with
1880         too few arguments
1881
1882         * ircd/s_misc.c (exit_client): remove all dependance on
1883         FNAME_USERLOG, since that's now gone; log only to LS_USER
1884
1885         * ircd/s_debug.c: USE_SYSLOG no longer means anything
1886
1887         * ircd/m_oper.c (m_oper): no longer log to LS_OPERLOG--we already
1888         log to LS_OPER
1889
1890         * ircd/m_kill.c: no longer conditionalize on SYSLOG_KILL
1891
1892         * ircd/ircd_log.c: remove LS_OPERLOG, LS_USERLOG
1893
1894         * include/ircd_log.h: remove LS_OPERLOG, LS_USERLOG--they serve
1895         the same purpose as LS_USER and LS_OPER
1896
1897         * config/config-sh.in: remove no longer relevant log config
1898         variables
1899
1900         * ircd/uping.c (uping_init): use log_write instead of ircd_log
1901
1902         * ircd/s_misc.c (exit_client): use log_write instead of ircd_log
1903
1904         * ircd/s_conf.c: use log_write instead of ircd_log
1905
1906         * ircd/s_bsd.c (report_error): use log_write instead of ircd_log
1907
1908         * ircd/s_auth.c (timeout_auth_queries): use log_write instead of
1909         ircd_log
1910
1911         * ircd/res.c (send_res_msg): use log_write instead of ircd_log
1912
1913         * ircd/m_who.c: use log_write instead of write_log; no longer
1914         conditionalize on WPATH; mark dead ircd_log calls
1915
1916         * ircd/m_uping.c: mark dead ircd_log call
1917
1918         * ircd/m_server.c (mr_server): use log_write instead of ircd_log
1919
1920         * ircd/m_restart.c: use log_write instead of ircd_log; mark dead
1921         ircd_log calls
1922
1923         * ircd/m_rehash.c (mo_rehash): use log_write instead of ircd_log
1924
1925         * ircd/m_oper.c: use log_write instead of ircd_log; no longer
1926         conditionalize on FNAME_OPERLOG; mark dead ircd_log calls
1927
1928         * ircd/m_kill.c: mark dead ircd_log calls
1929
1930         * ircd/m_connect.c: use log_write instead of ircd_log; mark dead
1931         ircd_log
1932
1933         * ircd/m_clearmode.c: use log_write instead of write_log; no
1934         longer conditionalize on OPATH
1935
1936         * ircd/jupe.c: use log_write instead of write_log; no longer
1937         conditionalize on JPATH
1938
1939         * ircd/ircd_log.c: add USER subsystem; remove ircd_log() compat
1940         function; fix a couple of bugs
1941
1942         * ircd/ircd_alloc.c: fixed a comment
1943
1944         * ircd/ircd.c: use log_write instead of ircd_log; fold server
1945         notice generation in a couple of cases
1946
1947         * ircd/gline.c: use log_write instead of write_log; no longer
1948         conditionalize on GPATH
1949
1950         * ircd/channel.c (modebuf_flush_int): use log_write instead of
1951         write_log; no longer conditionalize on OPATH
1952
1953         * ircd/Makefile.in: run make depend, since dependencies have
1954         changed
1955
1956         * doc/example.conf: add system USER to documentation
1957
1958         * include/ircd_log.h: add system USER; remove old ircd_log()
1959         declarations
1960
1961 2000-12-04  Isomer <isomer@coders.net>
1962         * ircd/m_names.c: Add NAMES_EON to do_names to say add a
1963         'end_of_names' reply when done.
1964         * ircd/m_join.c: use NAMES_EON as mentioned above
1965
1966 2000-12-01  net  <simms@LUCIDA.QC.CA>
1967
1968         * ircd/motd.c: add a freelist for struct Motds
1969
1970 2000-11-30  Kevin L. Mitchell  <klmitch@mit.edu>
1971
1972         * ircd/s_stats.c (report_feature_list): report features--only
1973         local opers can see logging configuration, since it doesn't really
1974         mean anything to users
1975
1976         * ircd/s_err.c: add reply messages for new feature subsystem
1977
1978         * ircd/s_conf.c: add F lines to .conf
1979
1980         * ircd/parse.c: add the message descriptions for /set, /reset, and
1981         /get
1982
1983         * ircd/m_stats.c: add /stats f
1984
1985         * ircd/m_set.c (mo_set): implement /set
1986
1987         * ircd/m_reset.c (mo_reset): implement /reset
1988
1989         * ircd/m_rehash.c: /rehash m now flushes MOTD cache, and /rehash l
1990         reopens log files (for log file rotation)
1991
1992         * ircd/m_get.c (mo_get): implement /get
1993
1994         * ircd/ircd_log.c: use int instead of void return value; add
1995         log_report_features() and log_canon(); fix a function that
1996         disappears if DEBUGMODE not #define'd
1997
1998         * ircd/ircd_features.c: functions to manipulate feature settings
1999         either from the config file or with the new /set, /reset, and /get
2000         commands
2001
2002         * ircd/Makefile.in: add new .c files, run make depend
2003
2004         * include/s_stats.h: declare report_feature_list() (/stats f
2005         handler)
2006
2007         * include/numeric.h: add RPL_STATSFLINE, RPL_FEATURE,
2008         ERR_NOFEATURE, ERR_BADLOGTYPE, ERR_BADLOGSYS, and ERR_BADLOGVALUE
2009         reply numerics
2010
2011         * include/msg.h: add defines for SET, RESET, and GET
2012
2013         * include/ircd_log.h: add a function to canonicalize subsystem
2014         names; change some void return values to int
2015
2016         * include/ircd_features.h: new features subsystem handles all the
2017         manipulation of special features, like log files
2018
2019         * include/handlers.h: declare new mo_{s,res,g}et message handlers
2020         for fiddling with features run-time
2021
2022         * include/client.h (SNO_DEFAULT): don't set SNO_DEBUG by default;
2023         seemed like a good idea at the time...
2024
2025         * doc/example.conf: document new F lines
2026
2027 2000-11-29  Kevin L. Mitchell  <klmitch@mit.edu>
2028
2029         * ircd/s_debug.c: rewrite debug_init() and vdebug() in terms of
2030         new logging functions, which have special support for the debug
2031         log; added loop detection to vdebug(), so that I can
2032         sendto_opmask_butone() from log_vwrite() without incurring another
2033         call to vdebug()
2034
2035         * ircd/s_conf.c (rehash): call log_reopen() from rehash routine;
2036         this allows log file rotations
2037
2038         * ircd/m_kill.c: call log_write_kill() instead of ircd_log_kill()
2039
2040         * ircd/ircd_log.c: much more work fleshing out the interface;
2041         removed old interface; included backwards-compat ircd_log()
2042         function that logs to subsystem LS_OLDLOG
2043
2044         * ircd/ircd.c: switch to new log_init()/log_close()/log_reopen()
2045         functions
2046
2047         * include/ircd_log.h: include stdarg.h for va_list; move ordering
2048         warning to top of file; fill out LogSys enum; declare new
2049         log_debug_init(), log_vwrite(), log_write_kill(), and
2050         log_[sg]et_*() functions; add flags argument to log_write();
2051         defined flags to inhibit various logging actions
2052
2053         * include/client.h: added support for new SNO_DEBUG, enabled only
2054         if DEBUGMODE is defined
2055
2056 2000-11-28  Kevin L. Mitchell  <klmitch@mit.edu>
2057
2058         * ircd/ircd_log.c: make sure the various LOG_* constants are
2059         defined (probably not needed, since #include <syslog.h> isn't
2060         conditional); various static data needed for the new logging
2061         functions; definitions of new logging functions
2062
2063         * include/ircd_log.h: new LogSys enum, declarations for part of
2064         new logging API
2065
2066         * ircd/motd.c: we were setting type to MOTD_CLASS unconditionally,
2067         which was of course stupid; switched to using switch/case in
2068         initialization in motd_create(); zero the MotdList.other pointer
2069         from motd_clear()
2070
2071         * ircd/ircd.c (main): motd_init() has to come before init_conf(),
2072         or we overwrite init_conf()'s hard work with respect to T-lines
2073
2074 2000-11-27  Kevin L. Mitchell  <klmitch@mit.edu>
2075
2076         * ircd/s_stats.c: comment out report_motd_list and include a
2077         reference to motd_report()
2078
2079         * ircd/s_conf.c: rip out the old MOTD manipulation functions; call
2080         motd_add() from the conf parser; call motd_clear() from the rehash
2081         routine; remove the no longer needed memory clearing and reloading
2082         stuff from the rehash service routine
2083
2084         * ircd/motd.c: loads new API, including static internal functions
2085         to do allocation/deallocation, etc.
2086
2087         * ircd/m_stats.c: use new motd_report() instead of
2088         report_motd_list()
2089
2090         * ircd/m_motd.c: use new syntax for motd_send()
2091
2092         * ircd/ircd.c: use new motd_init() function
2093
2094         * ircd/Makefile.in (SRC): forgot to add motd.c to SRC in
2095         Makefile.(in); also ran make depend
2096
2097         * include/motd.h: don't need config.h, but now do need time.h;
2098         define new structures and constants; redefine old API and define
2099         new functions
2100
2101 2000-11-22  Kevin L. Mitchell  <klmitch@mit.edu>
2102
2103         * ircd/s_user.c (register_user): use motd_signon() instead of
2104         calling m_motd; much cleaner this way
2105
2106         * ircd/motd.c: write the new motd_* stuff to make MOTD handling
2107         less of a crock
2108
2109         * ircd/m_motd.c: rewrite m{,s}_motd to call out to new motd_*
2110         functions
2111
2112         * include/motd.h: define new MOTD API stuff
2113
2114 2000-11-20  Kevin L. Mitchell  <klmitch@mit.edu>
2115
2116         * ircd/ircd_reply.c (protocol_violation): rewrite
2117         protocol_violation so it'll actually work
2118
2119         oh, yeah, use %s -> cptr->name, instead of %c -> cptr, so we get
2120         the client's real name in there.
2121
2122         * ircd/m_motd.c (m_motd): Iso's addition of get_client_class(sptr)
2123         resulted in core dumps if NODEFAULTMOTD is defined, because m_motd
2124         gets called from register_user with a NULL sptr.  This is probably
2125         a design problem, but this bandaid will do for now...
2126
2127 2000-11-19  Isomer <isomer@coders.net>
2128         * ircd/ircd_reply.c: added 'protocol_violation', thus alerting us
2129         to problems in the server<->server protocol.
2130
2131         * ircd/m_connect.c: allow remote connects with a port of '0'
2132         meaning to use the port in the config file.
2133
2134         * ircd/m_create.c: Enable hacking protection, lets see how far we
2135         get.
2136
2137         * ircd/m_error.c: The RFC says never accept ERROR from unreg'd
2138         clients, so we don't any more.
2139
2140         * ircd/m_kill.c: The kill path is now made up of numnicks of servers,
2141         and the user@host is displayed of the victim.
2142
2143         * ircd/m_map.c: reloaded 'dump_map'.
2144
2145         * ircd/m_trace.c: allow per class T:
2146
2147         * ircd/m_stats.c: allow local opers /remote stats anywhere on the 'net.
2148
2149 2000-11-17  Isomer <isomer@coders.net>
2150
2151         * ircd/m_topic.c: Fixed bug where we'd only send to clients topics
2152         that were the *same* instead of different.  Oh the embarrasment!
2153
2154         * ircd/IPcheck.c: Merged net's fix.
2155
2156 2000-11-02  Kevin L. Mitchell  <klmitch@mit.edu>
2157
2158         * ircd/m_whois.c: remove compiler warning by adding a newline to
2159         end of file
2160
2161         * ircd/m_names.c: moved the flags up to s_user.h
2162
2163         * ircd/m_join.c: call do_names instead of m_names; restructure
2164         ms_join to never transmute a JOIN into a CREATE, but use the TS in
2165         the JOIN (if present) to timestamp the channel
2166
2167         * ircd/channel.c: send JOINs individually, instead of grouping
2168         them, so that we can send the channel's creation time
2169
2170         * include/s_user.h: declare do_names()
2171
2172 2000-10-30  Isomer <isomer@coders.net>
2173         * ircd/m_oper.c: Fixed warning
2174
2175 2000-10-30  Isomer <isomer@coders.net>
2176         * ircd/m_oper.c: Fixed over agressive cut and no paste
2177
2178 2000-10-30  Isomer <isomer@coders.net>
2179
2180         * ircd/m_topic.c: Restructured, fixed bug where topics on local
2181         channels are propergated (I forget who pointed this out to me, but
2182         thanks anyway).  Also to save bandwidth don't send the topic to
2183         users if the topic is already the same on the server (but still
2184         propergate to other servers).  X/W's "autotopic" feature must
2185         chew a lot of bandwidth, hopefully this will help reduce this.
2186
2187         * doc/rfc1459.rfc: Updated documentation on /topic.
2188
2189         * ircd/listener.c: snotice warnings about failed accept()'s
2190         potentially warning admins that they're running out of fd's.
2191
2192         * ircd/stats.c, ircd/class.c: Removed /stats v, added number of
2193         people in a class in /stats y
2194
2195         * ircd/m_create.c: Checks for timewarp hacking and squit's
2196         evil servers. (currently disabled)
2197         
2198
2199 2000-10-30  net <simms@lucida.qc.ca>
2200         
2201         * ircd/gline.c: Fixed various bugs Isomer left behind.
2202
2203 2000-10-26  Kevin L. Mitchell  <klmitch@mit.edu>
2204
2205         * ircd/m_join.c (m_join): reply on attempt to join a BADCHANed
2206         channel is now ERR_BANNEDFROMCHAN instead of ERR_BADCHANNAME
2207
2208 2000-10-24  Kevin L. Mitchell  <klmitch@mit.edu>
2209
2210         * ircd/channel.c: ok, now last mode rules; mode +ps will always
2211         result in +s (and won't send a mode if the channel is already +s);
2212         mode +sp will always result in +p; -n+n on a +n channel results in
2213         no mode change; -n+n on a -n channel results in a +n mode change;
2214         etc.
2215
2216 2000-10-23  Kevin L. Mitchell  <klmitch@mit.edu>
2217
2218         * ircd/channel.c: add "add" and "del" elements to ParseState to
2219         avoid not-too-pretty -p+s when +s is sufficient; fix a bug in
2220         mode_parse_limit that caused it to clear all channel modes
2221         prematurely; restructure mode_parse_mode to avoid calling
2222         modebuf_mode too early (ties in with first mentioned change);
2223         better logic for +p/+s mutual exclusivity; initialize "add" and
2224         "del" elements in mode_parse; send simple modes down to
2225         modebuf_mode after the loop in mode_parse
2226
2227 2000-09-28  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2228         * ircd/m_names.c: Fixed a non-lethal logic error that 
2229         triggers an assert() in find_member_link while debugging.
2230         (Spotted by Maniac-).
2231 2000-09-19  Thomas Helvey <helveytw@home.com>
2232         * ircd/s_conf.c: move K:lines to their own list and data
2233         structures, add supporting code.
2234         * ircd/m_stats.c: cleanup stats processing a bit move
2235         kline listing code to a new function, haven't figured
2236         out where it goes yet tho'
2237         * ircd/s_stats.c: added K:line bulk lister
2238         * include/s_conf.h: added new DenyConf struct
2239         * *[ch]: fixeup code that depended on changes
2240
2241 2000-09-17  Thomas Helvey <helveytw@home.com>
2242         * ircd/class.c: encapsulate class list
2243         * include/class.h: clean up classes
2244         * * fixup code that depended on changes
2245
2246 2000-09-17  Thomas Helvey <helveytw@home.com>
2247         * ircd/s_conf.c: add me to local conf
2248         * include/s_conf.h: move CONF_ME macro to chkconf.c
2249         * ircd/s_bsd.c: cleanup initialization, allow virtual host
2250         to be changed by rehash
2251
2252 2000-09-17  Thomas Helvey <helveytw@home.com>
2253         * include/class.h: add missing prototype
2254         * ircd/class.c: make argument to get_conf_class const
2255
2256 2000-09-17  Thomas Helvey <helveytw@home.com>
2257         * ircd/*.c: merged in changes from 2.10.10.pl12, cleanup
2258         merge conflicts.
2259         * ircd/*.h: merged in changes from 2.10.10.pl12, cleanup
2260         merge conflicts
2261
2262 2000-09-16  Thomas Helvey <helveytw@home.com>
2263         * ircd/s_conf.c: add code for server struct
2264         * ircd/client.c: copy of class.c sort of, new file for client
2265         specific operations, will move things here as appropriate,
2266         currently only one function is exported from here.
2267         * ircd/*.c: general logic cleanups, convert negatives to
2268         positives in places.
2269
2270 2000-09-16  Thomas Helvey <helveytw@home.com>
2271         * ircd/s_conf.c: add code for new crule data structs, strip quotes
2272         * ircd/crule.c: clean up scary casting a bit, type safety stuff
2273         * include/s_conf.h: add CRuleConf struct and support, remove
2274         unused constants
2275         * include/crule.h: type safety cleanups
2276         * ircd/*.c: fixup code that depended on stuff I changed
2277
2278 2000-09-15  Thomas Helvey <helveytw@home.com>
2279         * ircd/s_conf.c: start adding code for new conf data structs, changed
2280         listeners, admin line, motd lines, class lines. Move validate_hostent
2281         to resolver. General mayhem.
2282         * include/s_conf.h: new data structs and accessors
2283         * ircd/res.c: move validate_hostent here, rewrite, use regular
2284         expression for validation.
2285         * doc/example.conf: update docs for port
2286
2287 2000-09-14  Thomas Helvey <helveytw@home.com>
2288         * ircd/s_conf.c (conf_init): rewrite conf file parser, start to break
2289         up conf_init into managable chunks.
2290         * ircd/listener.c (set_listener_mask): fix logic bug core dump.
2291         * include/s_conf.h: add new data struct for local info (unwinding the mess).
2292
2293 2000-09-13  Thomas Helvey <helveytw@home.com>
2294         * ircd/list.c: put Clients in free lists, pre-allocate MAXCONNECTIONS
2295         local clients.
2296         * ircd/list.c: put SLinks in free lists
2297         * ircd/channel.c: put Memberships in free lists
2298         * ircd/ircd.c: rearrange initializations a bit in main
2299         Note: With these changes, ircd NEVER frees Clients, SLinks or
2300         Memberships. It will also rarely need to allocate new
2301         ones during net bursts and other disruptions. This should
2302         cut down on memory fragmentation a bit as well.
2303
2304 2000-08-30  Kevin L. Mitchell  <klmitch@mit.edu>
2305
2306         * ircd/m_names.c (do_names): pull-up from do_names fix in
2307         u2.10.10.pl11
2308
2309 2000-07-15  Perry Lorier       <Isomer@coders.net>
2310         * various: IP only k:'s and G:'s now do bit tests instead of two(!) 
2311                  match()'s.  Major Major cpu savings.  Also speed up the
2312                  other case slightly.  As a side effect you can now
2313                  k/Gline *@10.0.0.0/8.  I'll do bans tomorrow, it's nearing
2314                  3am.
2315
2316 2000-07-15  Perry Lorier       <Isomer@coders.net>
2317         * various: Fixed warnings after compiling on an alpha.
2318 2000-07-09  Perry Lorier       <Isomer@coders.net>
2319         * doc/ircd.8: Applied grammitical changes by Liandrin, applied
2320                       changes suggested by various other people.
2321         * ircd/IPcheck.c: More bug fixes.  Current problem appears to be
2322                         that it gets a corrupt entry somehow.
2323 2000-07-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2324         * ircd/m_oper.c: Clean up compiler warning.
2325
2326 2000-07-08  Perry Lorier       <Isomer@coders.net>
2327         * doc/ircd.8: Updated the documentation, it was slightly out of date
2328                       being updated around 1989.
2329         * ircd/m_whois.c: Rewrote for clarity, and probably a bit more speed.
2330                           fixed a few minor glitches.
2331         * doc/rfc1459.unet: Updated.
2332         * ircd/IPcheck.c: Fixed more bugs.
2333         * ircd/s_bsd.c: We now keep track of servers we've conected.
2334
2335 2000-07-02  Perry Lorier       <Isomer@coders.net>
2336         * ircd/s_misc.c: Fixed remote IPcheck bug.  Ok, I'm a moron, so sue
2337                         me.  Thanks to Hektik, thanks thanks thanks thanks
2338                         thanks thanks thanks thanks thank thanks thank thanks
2339
2340 2000-07-01  Perry Lorier       <Isomer@coders.net>
2341         * ircd/s_conf.c: "Fixed" the "bug" where people would "evade" K:'s.
2342         * ircd/s_conf.c, include/IPcheck.h: Fixed compile warnings.
2343
2344 2000-06-22  Perry Lorier       <Isomer@coders.net>
2345         * ircd/IPcheck.c: Large chunks redone.
2346         * ircd/s_conf.c: Changes due to IPcheck - ONE nolonger supported,
2347                         single AND double digit limits are allowed now.
2348         * misc other: Changes to IPcheck.
2349
2350 2000-06-30  Perry Lorier       <Isomer@coders.net>
2351         * ircd/ircd.c: Fix command line parameter bugs.
2352
2353 2000-06-30  Perry Lorier       <Isomer@coders.net>
2354         * ircd/m_kill.c: Fixed bug with LOCAL_KILL_ONLY
2355         * ircd/m_nick.c: Tidied things up.
2356
2357 2000-06-12 Joseph Bongaarts <foxxe@trms.com>
2358         * ircd/m_stats.c: Iso forgot mo_stats when he added /stats v
2359         
2360 2000-05-29  Perry Lorier       <Isomer@coders.net>
2361         * ircd/m_stats.c: add /stats v to do only the last part of the /trace
2362         * ircd/IPcheck.c: Cosmetic change, if we meddle with it enough do
2363                         you think it'll get bored and fix itself?
2364
2365 2000-06-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2366
2367         * ircd/m_names.c: Clean up compiler warnings.
2368
2369 2000-06-09  Kevin L. Mitchell  <klmitch@mit.edu>
2370
2371         * ircd/channel.c (mode_parse_client): don't send warning if
2372         there's not enough arguments for a +/-o/v; means the habit of
2373         doing "/mode #channel +oooooo bob" doesn't result in a bunch of
2374         error messages
2375
2376 2000-06-04  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2377
2378         * ircd/m_names.c: Re-factor code to remove unneccessary
2379         GlobalChannelList iteration every time someone joins a channel.
2380
2381 2000-06-02  Kevin L. Mitchell  <klmitch@mit.edu>
2382
2383         * ircd/s_user.c: add struct Gline * argument to register_user;
2384         look up global glines and repropagate them if necessary; send
2385         acknowledgement of gline to remote servers when registering users
2386
2387         * ircd/s_serv.c (server_estab): don't send acknowledgement of
2388         local glines to remote servers; do send gline acknowledgement of
2389         bursted users
2390
2391         * ircd/m_user.c (m_user): pass new struct Gline * argument to
2392         register_user
2393
2394         * ircd/m_pong.c: pass new struct Gline * argument to register_user
2395
2396         * ircd/m_nick.c (ms_nick): document protocol change
2397
2398         * ircd/gline.c: support GLINE_LASTMOD
2399
2400         * include/s_user.h: add struct Gline * argument to register_user
2401
2402         * include/gline.h: add GLINE_LASTMOD to look up non-zero lastmods
2403
2404         * ircd/s_conf.c (find_kill): add unsigned int argument to
2405         gline_lookup()
2406
2407         * ircd/gline.c: add GLINE_GLOBAL to lookup or find only global
2408         glines; add unsigned int argument to gline_lookup()
2409
2410         * include/gline.h: add GLINE_GLOBAL flag; add unsigned int
2411         argument to gline_lookup()
2412
2413         * ircd/m_server.c: Resend jupe only when there is no %<lastmod>
2414         parameter, or when it falls out of bounds: see comments prior to
2415         call to jupe_resend(); call server_estab with struct Jupe
2416         parameter, so that we place the appropriate %<lastmod> in the
2417         appropriate place.
2418
2419         * ircd/s_serv.c (server_estab): send %<lastmod> for introduced
2420         server, as well as for servers when we're sending the BURST
2421
2422         * include/s_serv.h: add a struct Jupe * to the arguments for
2423         server_estab() so that we can send the appropriate lastmod
2424         parameter
2425
2426         * ircd/m_gline.c (ms_gline): actually, this should be the
2427         slightest bit more efficient...
2428
2429         * ircd/m_jupe.c (ms_jupe): actually, this should be the slightest
2430         bit more efficient...
2431
2432         * ircd/m_gline.c (ms_gline): inhibit GLINE processing resends
2433         during netburst
2434
2435         * ircd/m_jupe.c (ms_jupe): inhibit JUPE processing resends during
2436         netburst
2437
2438         * ircd/channel.c (joinbuf_join): really remove user from local
2439         channels
2440
2441 2000-05-29  Perry Lorier       <Isomer@coders.net>
2442         * ircd/m_names.c: Removed redundant space. 
2443         * ircd/s_bsd.c: Fixed incorrect syntax on ERROR line.
2444
2445 2000-05-18  Kevin L. Mitchell  <klmitch@mit.edu>
2446
2447         * ircd/m_burst.c (ms_burst): er...that should have been a ",", not
2448         a " "
2449
2450 2000-05-04  Kevin L. Mitchell  <klmitch@mit.edu>
2451
2452         * ircd/channel.c: replace bogus assertions with returns, which is
2453         logically correct; only wipe out limit/key if they were originally
2454         set in the first place; remove user from channel when doing a
2455         PARTALL; only send MODE +o for user CREATEing channel if user is
2456         not MyUser--CREATE will only be used if the channel did not
2457         originally exist, therefore we can assume no one local is on the
2458         channel anyway, and we don't exactly need for the user to see an
2459         explicit +o for themselves
2460
2461         * doc/readme.gline: describe the syntax of the GLINE command
2462
2463         * doc/readme.jupe: update to reflect a couple of changes to JUPE
2464
2465         * ircd/gline.c: don't propagate local changes
2466
2467         * ircd/jupe.c: don't propagate local changes
2468
2469         * ircd/m_gline.c (mo_gline): force local flag when deactivating
2470         glines with 0 lastmod
2471
2472         * ircd/gline.c (gline_deactivate): G-lines with zero lastmod time
2473         are now removed instead of being deactivated
2474
2475         * ircd/m_gline.c (ms_gline): make G-lines of the form "GLINE *
2476         -<mask>" be accepted
2477
2478         * ircd/channel.c (send_channel_modes): deal with one of the last
2479         vestiges of sendbuf
2480
2481         * ircd/m_burst.c (ms_burst): debugged ban processing; removed
2482         debugging hooks
2483
2484         * ircd/channel.c (modebuf_extract): remove debugging
2485         sendto_opmask_butone calls
2486
2487 2000-05-03  Kevin L. Mitchell  <klmitch@mit.edu>
2488
2489         * ircd/channel.c: support a couple of new flags to support using
2490         mode_parse; fix some bugs with 0 struct ModeBuf *; implementation
2491         of modebuf_extract to extract added flags for use by ms_burst
2492
2493         * include/channel.h: a couple of new flags to support using
2494         mode_parse inside ms_burst
2495
2496         * ircd/m_burst.c (ms_burst): brand new implementation of BURST
2497
2498         * ircd/m_endburst.c: add loop to processing of end_of_burst to
2499         free empty channels after the BURST is over.
2500
2501         * ircd/m_server.c: convert to use new send.c functions--I wanted
2502         to rewrite it from scratch, but the logic's pretty complex; I may
2503         still rewrite it, though...
2504
2505 2000-05-02  Thomas Helvey <tomh@inxpress.net>
2506
2507         * ircd/ircd.c: fix broken header include ordering
2508
2509 2000-05-02  Thomas Helvey <tomh@inxpress.net>
2510         
2511         * ircd/IPcheck.c: cleanups for ZenShadow's cleanups
2512         review emailed privately
2513
2514         * include/IPcheck.h: removed unneeded include
2515
2516 2000-05-02  Kevin L. Mitchell  <klmitch@mit.edu>
2517
2518         * ircd/s_user.c (hunt_server): throw in a comment so I know what
2519         the sendto_one is for
2520
2521         * include/querycmds.h (Count_unknownbecomesclient): convert to
2522         sendto_opmask_butone
2523
2524         * ircd/send.c: start removing dead code
2525
2526         * include/send.h: start removing dead code
2527
2528         * ircd/m_rping.c: convert to sendcmdto_one / send_reply /
2529         hunt_server_cmd
2530
2531         * ircd/m_rpong.c: convert to sendcmdto_one / send_reply
2532
2533 2000-05-01  Kevin L. Mitchell  <klmitch@mit.edu>
2534
2535         * ircd/m_stats.c: convert to sendcmdto_one / send_reply
2536
2537         * ircd/m_kick.c: Completely reimplement m_kick
2538
2539         * ircd/channel.c: send_user_joins removed; it was dead code,
2540         anyway...
2541
2542 2000-05-01  Perry Lorier <isomer@coders.net>
2543         * ircd/m_invite.c: Fix for the rest of m_invite.c, and again.
2544         * ircd/channels.c: My fix for the part problem.  Untested, probably
2545                 won't work.  Can't be much worse than the current problem.
2546                 it'll either work or core, take your pick.
2547
2548
2549 2000-04-30  Perry Lorier <isomer@coders.net>
2550         * config/config-sh.in: Fix for CONNEXIT
2551         * ircd/s_{user,misc}.c: Fix for CONNEXIT
2552         * ircd/m_invite.c: Fix for incorrectly numnickified invite.
2553                         (Kev: Want to come talk to me about this?)
2554
2555 2000-04-30  Steven M. Doyle <steven@doyle.net>
2556         * ircd/ircd.c
2557           - general cleanups and readability enhancements
2558           - rewrite of setuid/chroot code.
2559           - server will no longer run as root
2560           - -DPROFIL compile option removed
2561           - Fixed IPcheck API calls
2562  
2563         * config/config-sh.in
2564           - Fixed up chroot compile options
2565           - Added options for debug and profile compiles
2566  
2567         * config/gen.ircd.Makefile
2568           - Support for new debug/profile options
2569  
2570         * ircd/Makefile.in
2571           - Support for new debug/profile options
2572  
2573         * ircd/ircd_signal.c
2574           - Removed -DPROFIL
2575
2576         * include/IPcheck.h
2577           - Removed old API prototypes, added new ones
2578         
2579         * ircd/IPcheck.c
2580           - Readability cleanups (well, I -think-...)
2581           - Changed IPRegistryEntry.last_connect to a time_t.  The previously
2582             used unsigned short was probably causing interesting things after
2583             a client had been connected longer than about 65,535 seconds...
2584           - Removed old API functions.
2585
2586         * ircd/whocmds.c
2587           - Removed IPcheck.h include
2588         
2589         * Additionally modified IPcheck API calls in:
2590           - ircd/m_nick.c
2591           - ircd/m_auth.c
2592           - ircd/s_bsd.c
2593           - ircd/s_conf.c
2594           - ircd/s_misc.c
2595           - ircd/s_serv.c
2596           - ircd/s_user.c
2597         
2598         
2599 2000-04-30  Perry Lorier <isomer@coders.net>
2600         * ircd/s_bsd.c: Sigh. :)
2601         * ircd/m_mode.c: fix for modeless channels by poptix.
2602
2603 2000-04-29  Kevin L. Mitchell  <klmitch@mit.edu>
2604
2605         * ircd/m_join.c: reimplement JOIN in terms of struct JoinBuf
2606
2607         * ircd/channel.c (clean_channelname): make clean_channelname also
2608         truncate long channel names
2609
2610 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
2611
2612         * ircd/m_create.c: reimplement CREATE in terms of struct JoinBuf
2613
2614         * ircd/channel.c: implemented joinbuf_init, joinbuf_join,
2615         joinbuf_flush
2616
2617         * include/channel.h: definitions and declarations for the struct
2618         JoinBuf abstraction
2619
2620 2000-04-29  Perry Lorier <isomer@coders.net>
2621         * ircd/s_bsd.c: Ok, so I thought I compiled and tested this...
2622
2623 2000-04-29  Perry Lorier <isomer@coders.net>
2624         * ircd/s_bsd.c: Add debugging code to IPcheck
2625
2626 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
2627
2628         * include/ircd_reply.h (SND_EXPLICIT): use instead of RPL_EXPLICIT
2629
2630         * ircd/ircd_reply.c (send_reply): use SND_EXPLICIT instead of
2631         RPL_EXPLICIT
2632
2633         * ircd/m_userhost.c (m_userhost): add a dead code comment
2634
2635         * ircd/m_desynch.c: forgot one...
2636
2637         * ircd/m_rehash.c (mo_rehash): er, duplicates :)
2638
2639         * ircd/m_proto.c (proto_send_supported): just change a comment so
2640         it doesn't show up in my scans
2641
2642         * ircd/ircd_reply.c (send_reply): fix a slight bug...
2643
2644         * ircd/s_numeric.c (do_numeric): use new sendcmdto_* functions,
2645         kinda hackish...
2646
2647         * ircd/parse.c (parse_server): argument wrangling to make
2648         processing in do_numeric a little easier to deal with
2649
2650         * ircd/s_serv.c (server_estab): SERVER should come from
2651         acptr->serv->up, not &me
2652
2653         * ircd/m_lusers.c: accidentally left out sptr for a %C
2654
2655         * ircd/send.c: hack to support doing wallchops...
2656
2657         * ircd/m_whowas.c: convert to new send functions
2658
2659         * ircd/m_whois.c: convert to new send functions
2660
2661         * ircd/m_who.c: convert to new send functions
2662
2663         * ircd/m_wallops.c: convert to new send functions
2664
2665         * ircd/m_wallchops.c: convert to new send functions
2666
2667         * ircd/m_version.c: convert to new send functions
2668
2669         * ircd/m_userip.c: convert to new send functions
2670
2671         * ircd/m_userhost.c: convert to new send functions
2672
2673         * ircd/m_uping.c: convert to new send functions
2674
2675         * ircd/m_trace.c: convert to new send functions
2676
2677         * ircd/m_topic.c: convert to new send functions
2678
2679         * ircd/m_time.c: convert to new send functions
2680
2681         * ircd/m_squit.c: convert to new send functions
2682
2683         * ircd/m_silence.c: convert to new send functions
2684
2685         * ircd/m_settime.c: convert to new send functions
2686
2687         * ircd/m_restart.c: convert to new send functions
2688
2689         * ircd/m_rehash.c: convert to new send functions
2690
2691         * ircd/m_privmsg.c: convert to new send functions
2692
2693         * ircd/m_pong.c: convert to new send functions
2694
2695         * ircd/m_ping.c: convert to new send functions
2696
2697         * ircd/m_pass.c: convert to new send functions
2698
2699         * ircd/m_opmode.c: convert to new send functions
2700
2701         * ircd/m_oper.c: convert to new send functions
2702
2703         * ircd/m_notice.c: convert to new send functions
2704
2705         * ircd/m_nick.c: convert to new send functions
2706
2707         * ircd/m_names.c: convert to new send functions
2708
2709         * ircd/m_motd.c: convert to new send functions
2710
2711         * ircd/m_mode.c: convert to new send functions
2712
2713         * ircd/m_map.c: convert to new send functions
2714
2715         * ircd/m_lusers.c: convert to new send functions
2716
2717         * ircd/m_list.c: convert to new send functions
2718
2719         * ircd/m_links.c: convert to new send functions
2720
2721         * ircd/m_kill.c: convert to new send functions
2722
2723         * ircd/m_jupe.c: convert to new send functions
2724
2725         * ircd/m_invite.c: convert to new send functions
2726
2727         * ircd/m_info.c: convert to new send functions
2728
2729         * ircd/m_help.c: convert to new send functions
2730
2731         * ircd/m_gline.c: convert to new send functions
2732
2733         * ircd/m_error.c: convert to new send functions
2734
2735         * ircd/m_endburst.c: convert to new send functions
2736
2737         * ircd/m_die.c: convert to new send functions
2738
2739         * ircd/m_destruct.c: convert to new send functions
2740
2741         * ircd/m_defaults.c: convert to new send functions
2742
2743         * ircd/m_connect.c: convert to new send functions
2744
2745 2000-04-28  Perry Lorier <isomer@coders.net>
2746         * RELEASE.NOTES: Describe a few more undocumented features.
2747         * config/config-sh.in: change the default paths for logging
2748         and the recommended number of channels.
2749         * include/supported.h: Rearrange slightly, added CHANTYPE's
2750
2751 2000-04-27  Kevin L. Mitchell  <klmitch@mit.edu>
2752
2753         * ircd/m_close.c: convert to send_reply
2754
2755         * ircd/m_clearmode.c: convert to send_reply, sendcmdto_serv_butone
2756
2757         * ircd/m_away.c: convert to send_reply and sendcmdto_serv_butone
2758
2759         * ircd/m_admin.c: convert to send_reply and hunt_server_cmd
2760
2761         * ircd/s_user.c (hunt_server_cmd): new hunt_server replacement
2762         that takes cmd and tok arguments, etc.  NOTE: THIS IMPLEMENTATION
2763         HAS A MAJOR HACK!!!  The whole hunt_server architecture should be
2764         carefully rethought...
2765
2766         * ircd/s_stats.c (hunt_stats): use new hunt_server_cmd
2767
2768         * include/s_user.h: hunt_server_cmd -- replacement for hunt_server
2769
2770         * ircd/s_misc.c: *sigh* 2.10.10 doesn't support squitting by
2771         numeric nick; therefore, we have to use the server name
2772
2773         * ircd/m_squit.c (ms_squit): allow to squit by server numeric nick
2774
2775         * ircd/send.c: fix minor bugs
2776
2777         * ircd/s_user.c (check_target_limit): mark dead code so I filter
2778         it when I grep
2779
2780         * ircd/s_serv.c (exit_new_server): mark dead code so I filter it
2781         when I grep
2782
2783         * ircd/parse.c: mark dead code so I filter it when I grep
2784
2785         * ircd/map.c: mark dead code so I filter it when I grep
2786
2787         * ircd/ircd.c: mark dead code so I filter it when I grep
2788
2789         * ircd/ircd_relay.c: convert over to new sendcmdto_*, send_reply
2790         functions
2791
2792         * ircd/channel.c: mark dead code so I filter it when I grep
2793
2794         * ircd/s_stats.c: use send_reply instead of sendto_one w/rpl_str;
2795         hope I'm not stepping on toes...
2796
2797         * ircd/s_conf.c: more sendto_opmask_butone / send_reply
2798         conversions; use ircd_snprintf in a couple of cases to negate the
2799         possibility of buffer overflow
2800
2801 2000-04-26  Kevin L. Mitchell  <klmitch@mit.edu>
2802
2803         * ircd/channel.c: convert as much as possible to new send
2804         semantics
2805
2806         * ircd/send.c (sendcmdto_common_channels): fix a subtle bug --
2807         test member->user->from->fd, not from->fd
2808
2809         * ircd/gline.c (gline_add): go ahead and add badchans; we just
2810         won't look for them in m_gline; this way, they always work...
2811
2812         * ircd/jupe.c: use ircd_vsnprintf conversion specifiers
2813
2814         * ircd/gline.c: since write_log now uses ircd_vsnprintf, use
2815         ircd_vsnprintf conversion specifiers
2816
2817         * ircd/support.c (write_log): use ircd_vsnprintf for write_log, so
2818         I have my conversion specifiers
2819
2820         * ircd/gline.c (do_gline): use send_reply for ERR_YOUREBANNEDCREEP
2821
2822         * ircd/send.c (sendcmdto_flag_butone): explicitly send WALLOPS to
2823         local users
2824
2825         * ircd/s_serv.c (exit_new_server): rewrite exit_new_server to be a
2826         little less brain-dead
2827
2828         * ircd/s_misc.c: use sendcmdto_one, sendrawto_one, and send_reply
2829
2830         * ircd/s_debug.c: use send_reply with RPL_EXPLICIT for
2831         RPL_STATSDEBUG
2832
2833         * ircd/res.c (cres_mem): use send_reply with RPL_EXPLICIT for
2834         RPL_STATSDEBUG
2835
2836         * ircd/list.c (send_listinfo): use send_reply with RPL_EXPLICIT
2837         for RPL_STATSDEBUG
2838
2839         * ircd/m_pong.c: use RPL_EXPLICIT for ERR_BADPING
2840
2841         * ircd/ircd.c: use RPL_EXPLICIT for ERR_BADPING
2842
2843         * ircd/s_user.c (register_user): use RPL_EXPLICIT for
2844         ERR_INVALIDUSERNAME
2845
2846         * ircd/ircd_reply.c (send_reply): support RPL_EXPLICIT
2847
2848         * include/ircd_reply.h (RPL_EXPLICIT): somewhat of a hack to mark
2849         a numeric as needing to use an explicit pattern, which will be the
2850         first argument in the variable argument list
2851
2852         * ircd/s_user.c: use sendrawto_one instead of sendto_one to send
2853         non-prefixed nospoof PING
2854
2855         * ircd/s_bsd.c: use sendrawto_one instead of sendto_one to send
2856         non-prefixed SERVER login
2857
2858         * ircd/ircd.c (check_pings): fix last sendto_one calls (except for
2859         a numeric usage further up)
2860
2861         * include/send.h: declare sendrawto_one
2862
2863         * ircd/send.c (sendrawto_one): new function to use ONLY for
2864         non-prefixed commands, like PING to client, or PASS/SERVER on
2865         server registration
2866
2867 2000-04-25  Kevin L. Mitchell  <klmitch@mit.edu>
2868
2869         * ircd/ircd_snprintf.c (doprintf): implement %H for possible
2870         future expansion (channel numerics?)
2871
2872         * include/ircd_snprintf.h: added documentation to # to explain use
2873         with %C; added documentation for : to explain use with %C; added
2874         documentation for %H for channels
2875
2876         * ircd/whocmds.c: use send_reply
2877
2878         * ircd/userload.c: use sendcmdto_one
2879
2880         * ircd/uping.c: use sendcmdto_one
2881
2882         * ircd/send.c: use new flags to %C format string; ':' prefixes
2883         client name with a colon for local connects, '#' uses
2884         nick!user@host form for local connects
2885
2886         * ircd/s_user.c: use send_reply, sendto_opmask_butone,
2887         sendcmdto_one, sendcmdto_serv_butone, sendcmdto_flag_butone
2888
2889         * ircd/s_serv.c: use sendcmdto_one, sendto_opmask_butone
2890
2891         * ircd/s_bsd.c: use sendto_opmask_butone, send_reply,
2892         sendcmdto_one
2893
2894         * ircd/s_auth.c: use sendto_opmask_butone
2895
2896         * ircd/res.c: use sendcmdto_one
2897
2898         * ircd/ircd_snprintf.c (doprintf): minor bug fixes and some
2899         debugging assertions
2900
2901 2000-04-24  Kevin L. Mitchell  <klmitch@mit.edu>
2902
2903         * ircd/support.c: dumpcore is no longer used, so get rid of it
2904
2905         * ircd/parse.c: use send_reply, sendcmdto_one
2906
2907         * ircd/map.c: use send_reply
2908
2909         * ircd/listener.c: use send_reply
2910
2911         * ircd/jupe.c: use sendto_opmask_butone, send_reply
2912
2913         * ircd/ircd_reply.c: use send_reply
2914
2915         * ircd/ircd.c: use sendto_opmask_butone
2916
2917         * ircd/gline.c: use sendto_opmask_butone, send_reply
2918
2919         * ircd/ircd_snprintf.c (doprintf): make it deal with incompletely
2920         registered clients; make FLAG_ALT print nick!user@host; make
2921         FLAG_COLON print :blah
2922
2923         * ircd/class.c (report_classes): use send_reply instead of
2924         sendto_one
2925
2926         * ircd/hash.c (m_hash): replace sendto_one with sendcmdto_one
2927
2928         * ircd/IPcheck.c (ip_registry_connect_succeeded): replace
2929         sendto_one with sendcmdto_one
2930
2931 2000-04-21  Kevin L. Mitchell  <klmitch@mit.edu>
2932
2933         * ircd/send.c: clean up logic in sendcmdto_channel_butone; use
2934         MyConnect() instead of IsServer() in sendcmdto_flag_butone; define
2935         sendcmdto_match_butone
2936
2937         * include/send.h: declare sendcmdto_match_butone
2938
2939 2000-04-20  Kevin L. Mitchell  <klmitch@mit.edu>
2940
2941         * ircd/jupe.c: update to use send_reply()
2942
2943         * ircd/gline.c: update to use send_reply()
2944
2945         * include/ircd_reply.h: declare send_reply
2946
2947         * ircd/ircd_reply.c (send_reply): send_error_to_client, but for
2948         replies; uses ircd_snprintf
2949
2950         * ircd/send.c: added comments to redirect searchers to appropriate
2951         sendcmdto_* function; moved new functions to end of file; added
2952         explanatory comments; reordered arguments; defined new functions
2953         mentioned below
2954
2955         * ircd/m_jupe.c: reorder arguments to sendcmdto_* functions
2956
2957         * ircd/m_gline.c: reorder arguments to sendcmdto_* functions
2958
2959         * ircd/jupe.c: reorder arguments to sendcmdto_* functions
2960
2961         * ircd/gline.c: reorder arguments to sendcmdto_* functions
2962
2963         * include/send.h: reorder arguments, add explanatory comments,
2964         declare new functions sendcmdto_flag_butone, sendto_opmask_butone,
2965         and vsendto_opmask_butone
2966
2967 2000-04-19  Kevin L. Mitchell  <klmitch@mit.edu>
2968
2969         * ircd/send.c: define sendcmdto_channel_butone, wrote a simplified
2970         vsendto_op_mask that uses '*' instead of the receiving client
2971         nickname
2972
2973         * include/send.h: declare sendcmdto_channel_butone; takes a skip
2974         argument that allows you to skip (or not to skip) deaf users,
2975         users behind bursting servers, and non channel operators
2976
2977 2000-04-17  Kevin L. Mitchell  <klmitch@mit.edu>
2978
2979         * ircd/send.c: new sendcmdto_channel_butserv -- note that old
2980         sendto_channel_butserv has a subtle bug; also wrote
2981         sendcmdto_common_channels.
2982
2983         * include/send.h: declare new sendcmdto_* functions
2984
2985         * ircd/jupe.c: support local deactivations of jupes
2986
2987         * ircd/gline.c: support local deactivations of glines
2988
2989         * include/jupe.h: JUPE_LDEACT allows jupes to be locally
2990         deactivated; if they aren't locally deactivated, then it slaves to
2991         the net-wide activation status; JupeIsRemActive() tests only
2992         whether the jupe is active everywhere else
2993
2994         * include/gline.h: GLINE_LDEACT allows glines to be locally
2995         deactivated; if they aren't locally deactivated, then it slaves to
2996         the net-wide activation status; GlineIsRemActive() tests only
2997         whether the gline is active everywhere else
2998
2999         * ircd/gline.c: detect overlapping G-lines; if an existing, wider
3000         gline expires after the new one will, we drop the new one,
3001         otherwise we add the G-line after that one (so the wide one will
3002         apply first); if the new one contains an existing G-line and if it
3003         will expire after the existing one, we drop the existing one to
3004         save memory
3005
3006         * ircd/m_gline.c (mo_gline): opers could issue remote local
3007         glines when CONFIG_OPERCMDS was off; fixed
3008
3009 2000-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
3010
3011         * ircd/m_jupe.c (mo_jupe): allow target argument to be dropped if
3012         this is a local JUPE
3013
3014         * ircd/gline.c: add flags argument to gline_activate and
3015         gline_deactivate for future expansion
3016
3017         * ircd/m_gline.c: pass flags to gline_activate and
3018         gline_deactivate
3019
3020         * include/gline.h: add flags argument to gline_activate and
3021         gline_deactivate
3022
3023         * ircd/jupe.c: add flags argument to jupe_activate and
3024         jupe_deactivate for future expansion
3025
3026         * include/jupe.h: add flags argument to jupe_activate and
3027         jupe_deactivate
3028
3029         * ircd/m_jupe.c: pass a flags argument to jupe_add instead of
3030         local, active; pass flags to jupe_activate and jupe_deactivate
3031
3032         * include/gline.h: remove dead code
3033
3034         * ircd/gline.c: make gline expire times relative to CurrentTime,
3035         since that should be monotonically increasing, instead of
3036         TStime(), which can be set backwards, and which can therefore
3037         cause an expire time to increase; make local glines be removed
3038         instead of just deactivated; don't let gline_find() look for
3039         user@host glines if the mask being looked up is a channel mask
3040
3041         * ircd/send.c (vsendcmdto_one): forgot to account for the case
3042         where origin is a server and destination is a user
3043
3044         * ircd/jupe.c: make jupe expire times relative to CurrentTime,
3045         since that should be monotonically increasing, instead of
3046         TStime(), which can be set backwards, and which can therefore
3047         cause an expire time to increase; make local jupes be removed
3048         instead of just deactivated
3049
3050         * ircd/ircd_snprintf.c: d'oh, thanks for catching that; short for
3051         limit is fine.  any other warnings I should know about?
3052
3053 2000-04-15  Thomas Helvey <tomh@inxpress.net>
3054
3055         * ircd/*.c: const correctness and type safety cleanups to
3056         get code to compile with C++ compiler. Still has
3057         signed/unsigned comparison warnings.
3058
3059 2000-04-15  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3060
3061         * ircd/userload.c: change <sys/time.h> include to <time.h> for
3062           portability.
3063
3064 2000-04-14  Kevin L. Mitchell  <klmitch@mit.edu>
3065
3066         * ircd/m_gline.c (mo_gline): d'oh, target isn't a numeric; use %C
3067         and convert acptr...
3068
3069         * ircd/s_user.c: move gline_lookup function call into
3070         register_user, where it'll have a username to lookup!
3071
3072         * ircd/m_gline.c: modify to utilize new sendcmdto_* series of
3073         functions; also stuff send_error_to_client into return clauses
3074
3075         * ircd/m_jupe.c: modify to utilize new sendcmdto_* series of
3076         functions; also use send_error_to_client where that makes sense
3077
3078         * ircd/jupe.c: modify to utilize new sendcmdto_* series of
3079         functions; also use send_error_to_client where that makes sense
3080
3081         * ircd/gline.c: modify to utilize new sendcmdto_* series of
3082         functions; also fix gline_lookup() to deal properly with remote
3083         clients--boy, do struct Client and struct User need to be cleaned
3084         up!
3085
3086         * ircd/ircd_snprintf.c (doprintf): a dest of &me is a server,
3087         too...
3088
3089         * ircd/send.c: wrote sendcmdto_one(), vsendcmdto_one(), and
3090         sendcmdto_serv_butone(), all utilizing the %v conversion of
3091         ircd_snprintf()
3092
3093         * include/send.h: define IRC_BUFSIZE, max size of a message;
3094         declare sendcmdto_one(), vsendcmdto_one(), and
3095         sendcmdto_serv_butone()
3096
3097         * include/msg.h: define all the CMD_* constants needed to utilize
3098         the new sendcmdto_* series of functions
3099
3100         * ircd/Makefile.in (SRC): list ircd_snprintf.c; run make depend
3101
3102         * ircd/gline.c: remove old, dead code.
3103
3104         * ircd/m_gline.c (mo_gline): disallow setting of global G-lines
3105         unless CONFIG_OPERCMDS is enabled; disallow listing of all G-lines
3106         (don't advertise proxies); remove dead code
3107
3108         * ircd/parse.c: oper handler for JUPE only lists jupes unless
3109         CONFIG_OPERCMDS is enabled
3110
3111         * ircd/m_jupe.c (mo_jupe): don't compile mo_jupe() if
3112         CONFIG_OPERCMDS is not enabled; we'll disable it in parse.c
3113
3114         * ircd/m_opmode.c (mo_opmode): if CONFIG_OPERCMDS is not enabled,
3115         always return ERR_DISABLED
3116
3117         * ircd/m_clearmode.c (mo_clearmode): if CONFIG_OPERCMDS is not
3118         enabled, always return ERR_DISABLED
3119
3120         * ircd/s_err.c: add error message to indicate disabled commands
3121
3122         * include/numeric.h (ERR_DISABLED): to indicate disabled commands
3123
3124         * doc/Configure.help: add documentation for CONFIG_OPERCMDS
3125
3126         * config/config-sh.in: add CONFIG_OPERCMDS, default both it and
3127         CONFIG_NEW_MODE to 'y' for now
3128
3129         * ircd/gline.c (gline_list): fix a minor formatting bogon
3130
3131         * BUGS: since I fixed that bug, might as well mark it fixed.
3132
3133         * ircd/m_join.c: look up badchans with GLINE_EXACT
3134
3135         * ircd/m_gline.c: fix parc count problems; look up existing
3136         G-lines with GLINE_EXACT; only set new lastmod when
3137         activating/deactivating existing glines if old lastmod was not 0
3138
3139         * ircd/gline.c: forgot to copy the gline reason over; don't
3140         propagate a gline with 0 lastmod if origin is user; add
3141         GLINE_EXACT to force exact matching of gline mask
3142
3143         * ircd/ircd_snprintf.c (doprintf): forgot to deal with the zero
3144         flag properly
3145
3146         * ircd/s_conf.c (find_kill): gline_find() takes a char *userhost,
3147         but gline_lookup() actually takes a client--d'oh.
3148
3149 2000-04-13  Thomas Helvey <tomh@inxpress.net>
3150         * ircd/IPcheck.c: Back port BLMet's bugfix from 2.10.10
3151
3152 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3153
3154         * ircd/whocmds.c: Don't make idle flag default in /who, to prevent:
3155           "/who * x"
3156           "Gte3 H*iwg Gte@212.49.240.217 :1 :0 I am the one that was."
3157           (Found by Plexus).
3158
3159         * ircd/whocmds.c: Change idle time calc from socket idle to user
3160           idle.
3161
3162 2000-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
3163
3164         * config/aclocal.m4 (unet_CHECK_TYPE_SIZES): check size of void *,
3165         too, for ircd_snprintf.c
3166
3167         * include/ircd_snprintf.h: documentation for ircd_(v)snprintf, in
3168         comments; mostly descended from the Linux manpage for printf, but
3169         also documenting the extensions.
3170
3171         * ircd/ircd_snprintf.c: NULL dest is equivalent to going to a
3172         client; make 'q' be the same as 'L'; remove __inline__; only
3173         define EXTENSION if HAVE_LONG_LONG is defined
3174
3175         * include/handlers.h: declare m_gline()
3176
3177         * ircd/parse.c: gline can be called by users, but it only lists
3178         the glines.
3179
3180         * ircd/s_user.c (set_nick_name): resend gline if a remote server
3181         introduces a glined client
3182
3183         * ircd/s_serv.c (server_estab): burst glines, too
3184
3185         * ircd/gline.c: fix up all the expire times to be offsets;
3186         simplify gline_resend()
3187
3188         * ircd/m_gline.c: begin coding replacements for ms_gline(),
3189         mo_gline(), and m_gline()
3190
3191         * ircd/gline.c (gline_add): allow *@#channel to work correctly;
3192         also, prohibit local BADCHANs if LOCAL_BADCHAN not defined
3193
3194 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3195
3196         * tools/Bouncer/*: Add comments/documentation/tags.
3197         * tools/Bouncer/*: Add debug defines, make task fork().
3198
3199 2000-04-12  Thomas Helvey <tomh@inxpress.net>
3200         * ircd/s_err.c: Cleanup s_err.c make one table so we
3201         don't have to do anything tricky to get an error string.
3202
3203 2000-04-12  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3204         * Add port bouncer for http (x/w)
3205
3206 2000-04-12  Kevin L. Mitchell  <klmitch@mit.edu>
3207
3208         * ircd/s_conf.c (find_kill): replaced call to find_gline() with a
3209         call to gline_find(); also used GlineReason() instead of direct
3210         reference to structure member
3211
3212         * ircd/m_join.c (m_join): replace bad_channel() calls with calls
3213         to gline_find(name, GLINE_BADCHAN), and also check to see if gline
3214         is active
3215
3216         * ircd/channel.c: nothing seems to be called anywhere...
3217
3218         * ircd/s_err.c: update a couple of replies to dovetail with new
3219         semantics
3220
3221         * ircd/gline.c: begin complete re-implementation of gline.c along
3222         the lines of the final design of jupe.c
3223
3224         * include/gline.h: begin complete re-implementation of gline.c
3225         along the lines of the final design of jupe.c
3226
3227         * ircd/channel.c (mode_process_clients): fix "Deop of +k user on
3228         %s by %s" message...
3229
3230         * ircd/ircd_snprintf.c: my new snprintf()-like functions
3231
3232         * include/ircd_snprintf.h: my new snprintf()-like functions
3233
3234 2000-04-11  Thomas Helvey <tomh@inxpress.net>
3235         * ircd/IPcheck.c: removed old dead code
3236         * ircd/s_user.c (send_user_info): removed non-standard
3237           user not found message for userhost/userip
3238
3239 2000-04-11  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3240
3241         * ircd/s_err.c: Added missing quotes to ERR_DONTCHEAT numeric.
3242         * doc/p10.html: Work on chapter 4.
3243
3244 2000-04-10  Kevin L. Mitchell  <klmitch@mit.edu>
3245
3246         * ircd/channel.c (mode_parse_client): fix coredump on /mode
3247         #foobar +o nosuchnick
3248
3249 2000-04-10  Perry Lorier  <Isomer@coders.net>
3250         * BUGS: Added bug.
3251
3252 2000-04-09  Thomas Helvey <tomh@inxpress.net>
3253         * include/IPcheck.h: fix prototype
3254         * ircd/s_user.c: fix usage of IPcheck_remote_connect
3255         * ircd/IPcheck.c: removed unused args
3256
3257 2000-04-09  Thomas Helvey <tomh@inxpress.net>
3258         * include/IPcheck.h: add proto for IPcheck_expire
3259
3260         * ircd/IPcheck.c: Rewrote
3261
3262         * ircd/ircd.c: Add IPcheck_expire to main message loop
3263
3264         * ircd/s_user.c: Redo target hashing, refactor target code
3265
3266         * include/numeric.h: Cleaned up numerics, added which ones are
3267         in use by other networks and what they are in use for.
3268
3269         * ircd/channel.c: cleaned can_join(), allow anyone through anything
3270         if /invited, simplified the function.  Opers overusing OPEROVERRIDE
3271         will get a message explaining to them not to cheat.
3272
3273         * ircd/m_join.c: cleaned up the various join functions, should be
3274         a lot more efficient.  Still needs work.  Now assumes that s<->s
3275         won't send it a JOIN 0.  Service coders - note this and tread with
3276         care.
3277
3278         * ircd/m_stats.c: added Gte-'s stats doc patch.
3279
3280         * ircd/m_version.c: /version now returns the 005 numeric as well.
3281         as requested by Liandrin.
3282
3283
3284 2000-04-07  Kevin L. Mitchell  <klmitch@mit.edu>
3285
3286         * ircd/m_clearmode.c: add include for support.h for write_log()
3287
3288         * configure: move ircd/crypt/* to tools/*
3289
3290 2000-04-06  Thomas Helvey <tomh@inxpress.net>
3291         * ircd/s_auth.c: Shorten auth connect timeout to 60 seconds
3292           set client host to server alias if connection from localhost
3293
3294 2000-04-06  Perry Lorier <isomer@coders.net>
3295         * ircd/ircd.c: Fix core during pinging (oops)
3296         
3297 2000-04-06  Perry Lorier <isomer@coders.net>
3298         * ircd/send.c: fixed wrong ident being sent to channels bug.
3299         * include/numerics.h: Updated some of the numerics from other
3300         networks.  Flagged some as 'unused' by undernet.
3301
3302 2000-03-30  Perry Lorier <isomer@coders.net>
3303         * ircd/ircd.c: Lets see if this helps the ping problem at all.
3304         * ircd/whocmds.c, /doc/readme.who: Added %l specifier to get idle
3305         time for local clients. (as requested), extended who now returns all
3306         the flags (@+!) so you can tell the complete state of a client.
3307
3308 2000-03-30  Thomas Helvey <tomh@inxpress.net>
3309         * m_rping.c m_rpong.c: add Gte's rping/rpong fixes
3310
3311 2000-03-30  Perry Lorier <isomer@coders.net>
3312         * ircd/parse.c: oops, missed opers.
3313
3314 2000-03-30  Perry Lorier <isomer@coders.net>
3315         * ircd/parse.c: fixed mystifying ping bug thats been plaguing us
3316         for so long.  Remember: m_ping MUST be in the parse array. :)
3317
3318 2000-03-30  Perry Lorier <isomer@coders.net>
3319         * ircd/ircd.c: test in check_pings was wrong.  I move that we
3320         disallow cvs commit after 10pm localtime....
3321
3322 2000-03-30  Perry Lorier <isomer@coders.net>
3323         * ircd/m_pong.c: Fix it for servers too.
3324
3325 2000-03-30  Perry Lorier <isomer@coders.net>
3326         * ircd/m_pong.c: Fix ping timeout bugs
3327
3328 2000-03-30  Perry Lorier <isomer@coders.net>
3329         * ircd/channel.c: Bans had CurrentTime in their when field instead
3330         of TStime()
3331
3332 2000-03-31  Thomas Helvey <tomh@ixpress.net>
3333         * ircd/numnicks.c (SetXYYCapacity): fix for extended
3334         numerics.
3335
3336 2000-03-30  Perry Lorier <isomer@coders.net>
3337         * ircd/m_nick.c: send kills both ways so when we add nick change
3338         on collision we don't desync the network.
3339
3340         * ircd/map.c: Fixup the map a bit more.
3341
3342 2000-03-31  Kevin L. Mitchell  <klmitch@mit.edu>
3343
3344         * ircd/m_clearmode.c (do_clearmode): Log the CLEARMODE to OPATH
3345
3346         * ircd/m_opmode.c: Log the mode changes to OPATH
3347
3348         * ircd/channel.c (modebuf_flush_int): Log the mode changes to
3349         OPATH
3350
3351         * include/channel.h (MODEBUF_DEST_LOG): Log the mode changes to
3352         OPATH
3353
3354         * doc/Configure.help: help text for CONFIG_LOG_OPMODE / OPATH
3355
3356         * config/config-sh.in: added OPATH for opmode log file
3357
3358         * ircd/m_clearmode.c (do_clearmode): updated uses of
3359         modebuf_mode_string() for the new usage
3360
3361         * ircd/channel.c: added flag MODE_FREE and an int argument to
3362         modebuf_mode_string() to indicate that the string must be free'd;
3363         updated calls to modebuf_mode_string() for the new usage; called
3364         collapse(pretty_mask()) on the ban string and use allocated memory
3365         for it; added ban list length accounting; fixed a number of small
3366         bugs in ban processing
3367
3368         * include/channel.h: added flag MODE_FREE and an int argument to
3369         modebuf_mode_string() to indicate that the string must be free'd
3370
3371         * ircd/m_clearmode.c (do_clearmode): made sure clearmode removed
3372         keys and limits that are set
3373
3374 2000-03-30  Perry Lorier <isomer@coders.net>
3375         * ircd/ircd.c: rewrote check_pings() for maintainability
3376         and speed.  Also changed quit msg's so they don't have
3377         redundant nick[host] info in them.
3378
3379         * ircd/send.c: Changed write errors to report what error
3380         occured (if possible).
3381
3382         * ircd/gline.c: added gline comment to the quit.
3383
3384         * ircd/m_server.c: Added suggestions to server quits mentioning
3385         what went wrong so the admin can fix it earlier instead of asking
3386         questions...
3387
3388         * ircd/map.c: Changed m_map() to hide numerics, show a * beside
3389         servers that aren't fully burst yet.  And show '(--s)' for servers
3390         where its not sure.
3391
3392         * doc/example.conf: Fixed wrapped U:
3393
3394 2000-03-30  Kevin L. Mitchell  <klmitch@mit.edu>
3395
3396         * ircd/m_mode.c (ms_mode): implemented a new m_mode in terms of
3397         mode_parse() (version selectable at compile time)
3398
3399         * ircd/m_clearmode.c (mo_clearmode): clean_channelname(parv[1])
3400
3401         * ircd/m_opmode.c (mo_opmode): clean_channelname(parv[1])
3402
3403         * config/config-sh.in: add new config option to enable new m_mode
3404         implementation
3405
3406         * doc/Configure.help: add documentation for new config option
3407         CONFIG_NEW_MODE
3408
3409         * ircd/channel.c (mode_parse_client): /opmode #foobar -o -- 461
3410         MODE -v : Not enough parameters
3411
3412         * ircd/m_clearmode.c (do_clearmode): do_clearmode() would remove
3413         +k and +l even if they weren't set...
3414
3415         * ircd/m_opmode.c: implement the OPMODE command using mode_parse()
3416
3417         * ircd/channel.c: make mode_process_clients() clear the DEOPPED
3418         flag; fix +s+p exclusivity; add MODE_ADD/MODE_DEL to flag list
3419         for; test the 0-th member, not the i-th member, of the client
3420         change state stuff
3421
3422         * ircd/m_clearmode.c (do_clearmode): use the new
3423         mode_invite_clear() function
3424
3425         * ircd/channel.c: cleared up all the compile-time warnings and
3426         errors
3427
3428         * include/channel.h: added declarations for mode_ban_invalidate()
3429         and mode_invite_clear()
3430
3431         * ircd/channel.c: finished mode_parse(), then broke it up into a
3432         dozen or so helper functions to make the code easier to read
3433
3434 2000-03-29  Thomas Helvey <tomh@inxpress.net>
3435         * ircd/ircd.c: refactor server initialization a bit, use
3436         getopt for parsing command line, refactor init_sys, main,
3437         and other bits.
3438
3439         * ircd/s_bsd.c: add functions for initialization to clean
3440         up logic a bit and remove duplicated code.
3441
3442         * include/ircd.h: add struct for server process related
3443         variables.
3444
3445 2000-03-29  Kevin L. Mitchell  <klmitch@mit.edu>
3446
3447         * ircd/channel.c: initial definition of mode_parse(); flags to
3448         prevent doing the same thing multiple times; helper method
3449         send_notoper() to send a "Not oper"/"Not on channel" notice
3450
3451         * include/channel.h: declare mode_parse() and helper flags
3452
3453         * ircd/channel.c (modebuf_flush_int): fiddled with timestamp
3454         sending to match the current action of set_mode() closely enough
3455         that hopefully there won't be major conflicts
3456
3457         * ircd/channel.c (modebuf_flush_int): consolidated the mode string
3458         building logic, reversed the order of the arguments to mode
3459         commands to have '-' preceed '+'
3460
3461 2000-03-29  Thomas Helvey <tomh@inxpress.net>
3462         * ircd/s_bsd.c (add_connection): don't disable socket options
3463         let OS tune itself and allow important performance tweaks to 
3464         work.
3465
3466 2000-03-28  Kevin L. Mitchell  <klmitch@mit.edu>
3467
3468         * ircd/channel.c (modebuf_flush_int): use %d, not %-15d; I got
3469         confused by set_mode, which is doing some really weird logic;
3470         guess what I'm going to rewrite next?  ;)
3471
3472 2000-03-28  Kevin L. Mitchell  <klmitch@emc.com>
3473
3474         * include/channel.h: added MODE_SAVE for the bounds checking stuff
3475         in modebuf_flush
3476
3477         * ircd/channel.c: make modebuf_flush into modebuf_flush_int and
3478         make it do bounds checking on the buffer; all modes are sent only
3479         if the all parameter is 1; modebuf_flush is the exported wrapper
3480
3481         * include/channel.h: add BOUNCE, renumber flags to get a little
3482         more space
3483
3484         * ircd/channel.c (modebuf_flush): don't overload HACK2, add
3485         BOUNCE; send DESYNCH message
3486
3487 2000-03-27  Kevin L. Mitchell  <klmitch@emc.com>
3488
3489         * ircd/m_clearmode.c (do_clearmode): only mark the modes the
3490         channel actually has in effect for deletion
3491
3492         * ircd/channel.c: added explanatory comments to all added
3493         functions; made flushing take place at the correct place even if
3494         the MODEBUF_DEST_DEOP flag is set; rewrote build_string() helper
3495         to bash some stupid bugs; made modebuf_flush() return if ModeBuf
3496         is empty, fixed the apparent source, removed some bogus string
3497         termination code, properly terminate the mode strings, add support
3498         for HACK2 and HACK3, made limit strings not be sent if the limit
3499         is being removed, changed where '+' and '-' come from in sent
3500         strings, added support for DEOP flag, set up bouncing code for
3501         HACK2
3502
3503         * ircd/Makefile.in: ran make depend
3504
3505         * include/channel.h: added new defines for future functionality,
3506         made modebuf_flush() return int so I can use tail recursion
3507
3508         * ircd/m_clearmode.c: add msg.h to includes; other misc cleanups
3509         to make it all compile
3510
3511         * ircd/m_opmode.c: add msg.h to includes...
3512
3513         * ircd/m_clearmode.c: implemented mo_clearchan()/ms_clearchan()
3514
3515         * ircd/channel.c (modebuf_flush): realized I forgot to
3516         nul-terminate addbuf/rembuf properly...
3517
3518         * ircd/m_clearmode.c (do_clearmode): wrote do_clearmode()...
3519
3520         * ircd/channel.c (modebuf_flush): correct sendto_server_butone to
3521         sendto_serv_butone--blah^2
3522
3523         * ircd/send.c (sendto_serv_butone): stupid comments confused me
3524
3525         * ircd/channel.c (modebuf_flush): if there are no mode changes to
3526         propagate, we're done...
3527
3528         * ircd/channel.c (modebuf_flush): duh; it's sendto_server_butone,
3529         not sendto_all_butone
3530
3531         * ircd/m_clearmode.c: define skeleton for m{o,s}_clearmode
3532
3533         * ircd/m_opmode.c: define skeleton for m{o,s}_opmode
3534
3535         * ircd/Makefile.in (SRC): added m_opmode() and m_clearmode() to
3536         the list
3537
3538         * ircd/parse.c: added messages for opmode and clearmode
3539
3540         * include/handlers.h: added declarations for mo_opmode(),
3541         ms_opmode(), mo_clearmode(), and ms_clearmode()
3542
3543         * include/msg.h: define MSG_OPMODE, TOK_OPMODE, MSG_CLEARMODE, and
3544         TOK_CLEARMODE
3545
3546         * include/channel.h (MODEBUF_DEST_OPMODE): Define the
3547         MODEBUF_DEST_OPMODE flag
3548
3549         * ircd/channel.c (modebuf_flush): added new flag,
3550         MODEBUF_DEST_OPMODE; causes channel MODE/HACK(4) notice to appear
3551         to originate from source's server (or source itself, if
3552         IsServer(source)); also causes a server-level MODE to be sent as
3553         OPMODE instead
3554
3555         * include/channel.h: defined MODEBUF_DEST_SERVER,
3556         MODEBUF_DEST_HACK4
3557
3558         * ircd/channel.c: Add another argument to build_string() to handle
3559         numeric nicks; implemented MODEBUF_DEST_SERVER to send MODEs to
3560         servers; implemented MODEBUF_DEST_HACK4 to cause HACK(4) notices
3561         to be sent out
3562
3563 2000-03-27  Perry Lorier <isomer@coders.net>
3564
3565         * ircd/s_bsd.c: fixed missing 'u' typo.
3566
3567 2000-03-26  Kevin L. Mitchell  <klmitch@emc.com>
3568
3569         * ircd/channel.c: implement modebuf_init(), _mode(), _mode_uint(),
3570         _mode_string(), _mode_client(), _flush(); also implemented a
3571         simple build_string()
3572
3573         * include/channel.h: added definition of ModeBuf, modebuf_*
3574         manipulation functions, and a couple of helper macros
3575
3576 2000-03-24 Thomas Helvey <tomh@inxpress.net>
3577   * numicks.c: convert extended numerics to use original mask version
3578   * numnicks.h: ""
3579   * s_user.c:
3580 2000-03-23 Thomas Helvey <tomh@inxpress.net>
3581   * Merge in changes from production
3582 2000-03-22 Thomas Helvey <tomh@inxpress.net>
3583   * numicks.c: Tweak to numnick generator to reduce possibility of duplicates.
3584   * rfc1459.unet: Add Maniac's documentation for /names 0
3585 * Fix misc. jupe bugs that somehow made it into the tree
3586 * Escape /names 0 to mean /names --Maniac
3587 * Don't core when server asks for info --Maniac 
3588 * Add Kev's jupe patch --Bleep
3589 * Add Maniacs squit patch --Bleep
3590 * Merge in u2_10_10_beta07 changes --Bleep
3591 * Merge in u2_10_10_beta06 changes --Bleep
3592 * Start ircu2.10.11 development, beta branch u2_10_10 --Bleep
3593 #-----------------------------------------------------------------------------