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