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