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