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