b19e336b8ab4a76e925fefbf85e94684d2685c19
[ircu2.10.12-pk.git] / ChangeLog
1 2000-06-02  Kevin L. Mitchell  <klmitch@mit.edu>
2
3         * ircd/channel.c (joinbuf_join): really remove user from local
4         channels
5
6 2000-05-29  Perry Lorier       <Isomer@coders.net>
7         * ircd/m_names.c: Removed redundant space. 
8         * ircd/s_bsd.c: Fixed incorrect syntax on ERROR line.
9
10 2000-05-18  Kevin L. Mitchell  <klmitch@mit.edu>
11
12         * ircd/m_burst.c (ms_burst): er...that should have been a ",", not
13         a " "
14
15 2000-05-04  Kevin L. Mitchell  <klmitch@mit.edu>
16
17         * ircd/channel.c: replace bogus assertions with returns, which is
18         logically correct; only wipe out limit/key if they were originally
19         set in the first place; remove user from channel when doing a
20         PARTALL; only send MODE +o for user CREATEing channel if user is
21         not MyUser--CREATE will only be used if the channel did not
22         originally exist, therefore we can assume no one local is on the
23         channel anyway, and we don't exactly need for the user to see an
24         explicit +o for themselves
25
26         * doc/readme.gline: describe the syntax of the GLINE command
27
28         * doc/readme.jupe: update to reflect a couple of changes to JUPE
29
30         * ircd/gline.c: don't propagate local changes
31
32         * ircd/jupe.c: don't propagate local changes
33
34         * ircd/m_gline.c (mo_gline): force local flag when deactivating
35         glines with 0 lastmod
36
37         * ircd/gline.c (gline_deactivate): G-lines with zero lastmod time
38         are now removed instead of being deactivated
39
40         * ircd/m_gline.c (ms_gline): make G-lines of the form "GLINE *
41         -<mask>" be accepted
42
43         * ircd/channel.c (send_channel_modes): deal with one of the last
44         vestiges of sendbuf
45
46         * ircd/m_burst.c (ms_burst): debugged ban processing; removed
47         debugging hooks
48
49         * ircd/channel.c (modebuf_extract): remove debugging
50         sendto_opmask_butone calls
51
52 2000-05-03  Kevin L. Mitchell  <klmitch@mit.edu>
53
54         * ircd/channel.c: support a couple of new flags to support using
55         mode_parse; fix some bugs with 0 struct ModeBuf *; implementation
56         of modebuf_extract to extract added flags for use by ms_burst
57
58         * include/channel.h: a couple of new flags to support using
59         mode_parse inside ms_burst
60
61         * ircd/m_burst.c (ms_burst): brand new implementation of BURST
62
63         * ircd/m_endburst.c: add loop to processing of end_of_burst to
64         free empty channels after the BURST is over.
65
66         * ircd/m_server.c: convert to use new send.c functions--I wanted
67         to rewrite it from scratch, but the logic's pretty complex; I may
68         still rewrite it, though...
69
70 2000-05-02  Thomas Helvey <tomh@inxpress.net>
71
72         * ircd/ircd.c: fix broken header include ordering
73
74 2000-05-02  Thomas Helvey <tomh@inxpress.net>
75         
76         * ircd/IPcheck.c: cleanups for ZenShadow's cleanups
77         review emailed privately
78
79         * include/IPcheck.h: removed unneeded include
80
81 2000-05-02  Kevin L. Mitchell  <klmitch@mit.edu>
82
83         * ircd/s_user.c (hunt_server): throw in a comment so I know what
84         the sendto_one is for
85
86         * include/querycmds.h (Count_unknownbecomesclient): convert to
87         sendto_opmask_butone
88
89         * ircd/send.c: start removing dead code
90
91         * include/send.h: start removing dead code
92
93         * ircd/m_rping.c: convert to sendcmdto_one / send_reply /
94         hunt_server_cmd
95
96         * ircd/m_rpong.c: convert to sendcmdto_one / send_reply
97
98 2000-05-01  Kevin L. Mitchell  <klmitch@mit.edu>
99
100         * ircd/m_stats.c: convert to sendcmdto_one / send_reply
101
102         * ircd/m_kick.c: Completely reimplement m_kick
103
104         * ircd/channel.c: send_user_joins removed; it was dead code,
105         anyway...
106
107 2000-05-01  Perry Lorier <isomer@coders.net>
108         * ircd/m_invite.c: Fix for the rest of m_invite.c, and again.
109         * ircd/channels.c: My fix for the part problem.  Untested, probably
110                 won't work.  Can't be much worse than the current problem.
111                 it'll either work or core, take your pick.
112
113
114 2000-04-30  Perry Lorier <isomer@coders.net>
115         * config/config-sh.in: Fix for CONNEXIT
116         * ircd/s_{user,misc}.c: Fix for CONNEXIT
117         * ircd/m_invite.c: Fix for incorrectly numnickified invite.
118                         (Kev: Want to come talk to me about this?)
119
120 2000-04-30  Steven M. Doyle <steven@doyle.net>
121         * ircd/ircd.c
122           - general cleanups and readability enhancements
123           - rewrite of setuid/chroot code.
124           - server will no longer run as root
125           - -DPROFIL compile option removed
126           - Fixed IPcheck API calls
127  
128         * config/config-sh.in
129           - Fixed up chroot compile options
130           - Added options for debug and profile compiles
131  
132         * config/gen.ircd.Makefile
133           - Support for new debug/profile options
134  
135         * ircd/Makefile.in
136           - Support for new debug/profile options
137  
138         * ircd/ircd_signal.c
139           - Removed -DPROFIL
140
141         * include/IPcheck.h
142           - Removed old API prototypes, added new ones
143         
144         * ircd/IPcheck.c
145           - Readability cleanups (well, I -think-...)
146           - Changed IPRegistryEntry.last_connect to a time_t.  The previously
147             used unsigned short was probably causing interesting things after
148             a client had been connected longer than about 65,535 seconds...
149           - Removed old API functions.
150
151         * ircd/whocmds.c
152           - Removed IPcheck.h include
153         
154         * Additionally modified IPcheck API calls in:
155           - ircd/m_nick.c
156           - ircd/m_auth.c
157           - ircd/s_bsd.c
158           - ircd/s_conf.c
159           - ircd/s_misc.c
160           - ircd/s_serv.c
161           - ircd/s_user.c
162         
163         
164 2000-04-30  Perry Lorier <isomer@coders.net>
165         * ircd/s_bsd.c: Sigh. :)
166         * ircd/m_mode.c: fix for modeless channels by poptix.
167
168 2000-04-29  Kevin L. Mitchell  <klmitch@mit.edu>
169
170         * ircd/m_join.c: reimplement JOIN in terms of struct JoinBuf
171
172         * ircd/channel.c (clean_channelname): make clean_channelname also
173         truncate long channel names
174
175 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
176
177         * ircd/m_create.c: reimplement CREATE in terms of struct JoinBuf
178
179         * ircd/channel.c: implemented joinbuf_init, joinbuf_join,
180         joinbuf_flush
181
182         * include/channel.h: definitions and declarations for the struct
183         JoinBuf abstraction
184
185 2000-04-29  Perry Lorier <isomer@coders.net>
186         * ircd/s_bsd.c: Ok, so I thought I compiled and tested this...
187
188 2000-04-29  Perry Lorier <isomer@coders.net>
189         * ircd/s_bsd.c: Add debugging code to IPcheck
190
191 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
192
193         * include/ircd_reply.h (SND_EXPLICIT): use instead of RPL_EXPLICIT
194
195         * ircd/ircd_reply.c (send_reply): use SND_EXPLICIT instead of
196         RPL_EXPLICIT
197
198         * ircd/m_userhost.c (m_userhost): add a dead code comment
199
200         * ircd/m_desynch.c: forgot one...
201
202         * ircd/m_rehash.c (mo_rehash): er, duplicates :)
203
204         * ircd/m_proto.c (proto_send_supported): just change a comment so
205         it doesn't show up in my scans
206
207         * ircd/ircd_reply.c (send_reply): fix a slight bug...
208
209         * ircd/s_numeric.c (do_numeric): use new sendcmdto_* functions,
210         kinda hackish...
211
212         * ircd/parse.c (parse_server): argument wrangling to make
213         processing in do_numeric a little easier to deal with
214
215         * ircd/s_serv.c (server_estab): SERVER should come from
216         acptr->serv->up, not &me
217
218         * ircd/m_lusers.c: accidentally left out sptr for a %C
219
220         * ircd/send.c: hack to support doing wallchops...
221
222         * ircd/m_whowas.c: convert to new send functions
223
224         * ircd/m_whois.c: convert to new send functions
225
226         * ircd/m_who.c: convert to new send functions
227
228         * ircd/m_wallops.c: convert to new send functions
229
230         * ircd/m_wallchops.c: convert to new send functions
231
232         * ircd/m_version.c: convert to new send functions
233
234         * ircd/m_userip.c: convert to new send functions
235
236         * ircd/m_userhost.c: convert to new send functions
237
238         * ircd/m_uping.c: convert to new send functions
239
240         * ircd/m_trace.c: convert to new send functions
241
242         * ircd/m_topic.c: convert to new send functions
243
244         * ircd/m_time.c: convert to new send functions
245
246         * ircd/m_squit.c: convert to new send functions
247
248         * ircd/m_silence.c: convert to new send functions
249
250         * ircd/m_settime.c: convert to new send functions
251
252         * ircd/m_restart.c: convert to new send functions
253
254         * ircd/m_rehash.c: convert to new send functions
255
256         * ircd/m_privmsg.c: convert to new send functions
257
258         * ircd/m_pong.c: convert to new send functions
259
260         * ircd/m_ping.c: convert to new send functions
261
262         * ircd/m_pass.c: convert to new send functions
263
264         * ircd/m_opmode.c: convert to new send functions
265
266         * ircd/m_oper.c: convert to new send functions
267
268         * ircd/m_notice.c: convert to new send functions
269
270         * ircd/m_nick.c: convert to new send functions
271
272         * ircd/m_names.c: convert to new send functions
273
274         * ircd/m_motd.c: convert to new send functions
275
276         * ircd/m_mode.c: convert to new send functions
277
278         * ircd/m_map.c: convert to new send functions
279
280         * ircd/m_lusers.c: convert to new send functions
281
282         * ircd/m_list.c: convert to new send functions
283
284         * ircd/m_links.c: convert to new send functions
285
286         * ircd/m_kill.c: convert to new send functions
287
288         * ircd/m_jupe.c: convert to new send functions
289
290         * ircd/m_invite.c: convert to new send functions
291
292         * ircd/m_info.c: convert to new send functions
293
294         * ircd/m_help.c: convert to new send functions
295
296         * ircd/m_gline.c: convert to new send functions
297
298         * ircd/m_error.c: convert to new send functions
299
300         * ircd/m_endburst.c: convert to new send functions
301
302         * ircd/m_die.c: convert to new send functions
303
304         * ircd/m_destruct.c: convert to new send functions
305
306         * ircd/m_defaults.c: convert to new send functions
307
308         * ircd/m_connect.c: convert to new send functions
309
310 2000-04-28  Perry Lorier <isomer@coders.net>
311         * RELEASE.NOTES: Describe a few more undocumented features.
312         * config/config-sh.in: change the default paths for logging
313         and the recommended number of channels.
314         * include/supported.h: Rearrange slightly, added CHANTYPE's
315
316 2000-04-27  Kevin L. Mitchell  <klmitch@mit.edu>
317
318         * ircd/m_close.c: convert to send_reply
319
320         * ircd/m_clearmode.c: convert to send_reply, sendcmdto_serv_butone
321
322         * ircd/m_away.c: convert to send_reply and sendcmdto_serv_butone
323
324         * ircd/m_admin.c: convert to send_reply and hunt_server_cmd
325
326         * ircd/s_user.c (hunt_server_cmd): new hunt_server replacement
327         that takes cmd and tok arguments, etc.  NOTE: THIS IMPLEMENTATION
328         HAS A MAJOR HACK!!!  The whole hunt_server architecture should be
329         carefully rethought...
330
331         * ircd/s_stats.c (hunt_stats): use new hunt_server_cmd
332
333         * include/s_user.h: hunt_server_cmd -- replacement for hunt_server
334
335         * ircd/s_misc.c: *sigh* 2.10.10 doesn't support squitting by
336         numeric nick; therefore, we have to use the server name
337
338         * ircd/m_squit.c (ms_squit): allow to squit by server numeric nick
339
340         * ircd/send.c: fix minor bugs
341
342         * ircd/s_user.c (check_target_limit): mark dead code so I filter
343         it when I grep
344
345         * ircd/s_serv.c (exit_new_server): mark dead code so I filter it
346         when I grep
347
348         * ircd/parse.c: mark dead code so I filter it when I grep
349
350         * ircd/map.c: mark dead code so I filter it when I grep
351
352         * ircd/ircd.c: mark dead code so I filter it when I grep
353
354         * ircd/ircd_relay.c: convert over to new sendcmdto_*, send_reply
355         functions
356
357         * ircd/channel.c: mark dead code so I filter it when I grep
358
359         * ircd/s_stats.c: use send_reply instead of sendto_one w/rpl_str;
360         hope I'm not stepping on toes...
361
362         * ircd/s_conf.c: more sendto_opmask_butone / send_reply
363         conversions; use ircd_snprintf in a couple of cases to negate the
364         possibility of buffer overflow
365
366 2000-04-26  Kevin L. Mitchell  <klmitch@mit.edu>
367
368         * ircd/channel.c: convert as much as possible to new send
369         semantics
370
371         * ircd/send.c (sendcmdto_common_channels): fix a subtle bug --
372         test member->user->from->fd, not from->fd
373
374         * ircd/gline.c (gline_add): go ahead and add badchans; we just
375         won't look for them in m_gline; this way, they always work...
376
377         * ircd/jupe.c: use ircd_vsnprintf conversion specifiers
378
379         * ircd/gline.c: since write_log now uses ircd_vsnprintf, use
380         ircd_vsnprintf conversion specifiers
381
382         * ircd/support.c (write_log): use ircd_vsnprintf for write_log, so
383         I have my conversion specifiers
384
385         * ircd/gline.c (do_gline): use send_reply for ERR_YOUREBANNEDCREEP
386
387         * ircd/send.c (sendcmdto_flag_butone): explicitly send WALLOPS to
388         local users
389
390         * ircd/s_serv.c (exit_new_server): rewrite exit_new_server to be a
391         little less brain-dead
392
393         * ircd/s_misc.c: use sendcmdto_one, sendrawto_one, and send_reply
394
395         * ircd/s_debug.c: use send_reply with RPL_EXPLICIT for
396         RPL_STATSDEBUG
397
398         * ircd/res.c (cres_mem): use send_reply with RPL_EXPLICIT for
399         RPL_STATSDEBUG
400
401         * ircd/list.c (send_listinfo): use send_reply with RPL_EXPLICIT
402         for RPL_STATSDEBUG
403
404         * ircd/m_pong.c: use RPL_EXPLICIT for ERR_BADPING
405
406         * ircd/ircd.c: use RPL_EXPLICIT for ERR_BADPING
407
408         * ircd/s_user.c (register_user): use RPL_EXPLICIT for
409         ERR_INVALIDUSERNAME
410
411         * ircd/ircd_reply.c (send_reply): support RPL_EXPLICIT
412
413         * include/ircd_reply.h (RPL_EXPLICIT): somewhat of a hack to mark
414         a numeric as needing to use an explicit pattern, which will be the
415         first argument in the variable argument list
416
417         * ircd/s_user.c: use sendrawto_one instead of sendto_one to send
418         non-prefixed nospoof PING
419
420         * ircd/s_bsd.c: use sendrawto_one instead of sendto_one to send
421         non-prefixed SERVER login
422
423         * ircd/ircd.c (check_pings): fix last sendto_one calls (except for
424         a numeric usage further up)
425
426         * include/send.h: declare sendrawto_one
427
428         * ircd/send.c (sendrawto_one): new function to use ONLY for
429         non-prefixed commands, like PING to client, or PASS/SERVER on
430         server registration
431
432 2000-04-25  Kevin L. Mitchell  <klmitch@mit.edu>
433
434         * ircd/ircd_snprintf.c (doprintf): implement %H for possible
435         future expansion (channel numerics?)
436
437         * include/ircd_snprintf.h: added documentation to # to explain use
438         with %C; added documentation for : to explain use with %C; added
439         documentation for %H for channels
440
441         * ircd/whocmds.c: use send_reply
442
443         * ircd/userload.c: use sendcmdto_one
444
445         * ircd/uping.c: use sendcmdto_one
446
447         * ircd/send.c: use new flags to %C format string; ':' prefixes
448         client name with a colon for local connects, '#' uses
449         nick!user@host form for local connects
450
451         * ircd/s_user.c: use send_reply, sendto_opmask_butone,
452         sendcmdto_one, sendcmdto_serv_butone, sendcmdto_flag_butone
453
454         * ircd/s_serv.c: use sendcmdto_one, sendto_opmask_butone
455
456         * ircd/s_bsd.c: use sendto_opmask_butone, send_reply,
457         sendcmdto_one
458
459         * ircd/s_auth.c: use sendto_opmask_butone
460
461         * ircd/res.c: use sendcmdto_one
462
463         * ircd/ircd_snprintf.c (doprintf): minor bug fixes and some
464         debugging assertions
465
466 2000-04-24  Kevin L. Mitchell  <klmitch@mit.edu>
467
468         * ircd/support.c: dumpcore is no longer used, so get rid of it
469
470         * ircd/parse.c: use send_reply, sendcmdto_one
471
472         * ircd/map.c: use send_reply
473
474         * ircd/listener.c: use send_reply
475
476         * ircd/jupe.c: use sendto_opmask_butone, send_reply
477
478         * ircd/ircd_reply.c: use send_reply
479
480         * ircd/ircd.c: use sendto_opmask_butone
481
482         * ircd/gline.c: use sendto_opmask_butone, send_reply
483
484         * ircd/ircd_snprintf.c (doprintf): make it deal with incompletely
485         registered clients; make FLAG_ALT print nick!user@host; make
486         FLAG_COLON print :blah
487
488         * ircd/class.c (report_classes): use send_reply instead of
489         sendto_one
490
491         * ircd/hash.c (m_hash): replace sendto_one with sendcmdto_one
492
493         * ircd/IPcheck.c (ip_registry_connect_succeeded): replace
494         sendto_one with sendcmdto_one
495
496 2000-04-21  Kevin L. Mitchell  <klmitch@mit.edu>
497
498         * ircd/send.c: clean up logic in sendcmdto_channel_butone; use
499         MyConnect() instead of IsServer() in sendcmdto_flag_butone; define
500         sendcmdto_match_butone
501
502         * include/send.h: declare sendcmdto_match_butone
503
504 2000-04-20  Kevin L. Mitchell  <klmitch@mit.edu>
505
506         * ircd/jupe.c: update to use send_reply()
507
508         * ircd/gline.c: update to use send_reply()
509
510         * include/ircd_reply.h: declare send_reply
511
512         * ircd/ircd_reply.c (send_reply): send_error_to_client, but for
513         replies; uses ircd_snprintf
514
515         * ircd/send.c: added comments to redirect searchers to appropriate
516         sendcmdto_* function; moved new functions to end of file; added
517         explanatory comments; reordered arguments; defined new functions
518         mentioned below
519
520         * ircd/m_jupe.c: reorder arguments to sendcmdto_* functions
521
522         * ircd/m_gline.c: reorder arguments to sendcmdto_* functions
523
524         * ircd/jupe.c: reorder arguments to sendcmdto_* functions
525
526         * ircd/gline.c: reorder arguments to sendcmdto_* functions
527
528         * include/send.h: reorder arguments, add explanatory comments,
529         declare new functions sendcmdto_flag_butone, sendto_opmask_butone,
530         and vsendto_opmask_butone
531
532 2000-04-19  Kevin L. Mitchell  <klmitch@mit.edu>
533
534         * ircd/send.c: define sendcmdto_channel_butone, wrote a simplified
535         vsendto_op_mask that uses '*' instead of the receiving client
536         nickname
537
538         * include/send.h: declare sendcmdto_channel_butone; takes a skip
539         argument that allows you to skip (or not to skip) deaf users,
540         users behind bursting servers, and non channel operators
541
542 2000-04-17  Kevin L. Mitchell  <klmitch@mit.edu>
543
544         * ircd/send.c: new sendcmdto_channel_butserv -- note that old
545         sendto_channel_butserv has a subtle bug; also wrote
546         sendcmdto_common_channels.
547
548         * include/send.h: declare new sendcmdto_* functions
549
550         * ircd/jupe.c: support local deactivations of jupes
551
552         * ircd/gline.c: support local deactivations of glines
553
554         * include/jupe.h: JUPE_LDEACT allows jupes to be locally
555         deactivated; if they aren't locally deactivated, then it slaves to
556         the net-wide activation status; JupeIsRemActive() tests only
557         whether the jupe is active everywhere else
558
559         * include/gline.h: GLINE_LDEACT allows glines to be locally
560         deactivated; if they aren't locally deactivated, then it slaves to
561         the net-wide activation status; GlineIsRemActive() tests only
562         whether the gline is active everywhere else
563
564         * ircd/gline.c: detect overlapping G-lines; if an existing, wider
565         gline expires after the new one will, we drop the new one,
566         otherwise we add the G-line after that one (so the wide one will
567         apply first); if the new one contains an existing G-line and if it
568         will expire after the existing one, we drop the existing one to
569         save memory
570
571         * ircd/m_gline.c (mo_gline): opers could issue remote local
572         glines when CONFIG_OPERCMDS was off; fixed
573
574 2000-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
575
576         * ircd/m_jupe.c (mo_jupe): allow target argument to be dropped if
577         this is a local JUPE
578
579         * ircd/gline.c: add flags argument to gline_activate and
580         gline_deactivate for future expansion
581
582         * ircd/m_gline.c: pass flags to gline_activate and
583         gline_deactivate
584
585         * include/gline.h: add flags argument to gline_activate and
586         gline_deactivate
587
588         * ircd/jupe.c: add flags argument to jupe_activate and
589         jupe_deactivate for future expansion
590
591         * include/jupe.h: add flags argument to jupe_activate and
592         jupe_deactivate
593
594         * ircd/m_jupe.c: pass a flags argument to jupe_add instead of
595         local, active; pass flags to jupe_activate and jupe_deactivate
596
597         * include/gline.h: remove dead code
598
599         * ircd/gline.c: make gline expire times relative to CurrentTime,
600         since that should be monotonically increasing, instead of
601         TStime(), which can be set backwards, and which can therefore
602         cause an expire time to increase; make local glines be removed
603         instead of just deactivated; don't let gline_find() look for
604         user@host glines if the mask being looked up is a channel mask
605
606         * ircd/send.c (vsendcmdto_one): forgot to account for the case
607         where origin is a server and destination is a user
608
609         * ircd/jupe.c: make jupe expire times relative to CurrentTime,
610         since that should be monotonically increasing, instead of
611         TStime(), which can be set backwards, and which can therefore
612         cause an expire time to increase; make local jupes be removed
613         instead of just deactivated
614
615         * ircd/ircd_snprintf.c: d'oh, thanks for catching that; short for
616         limit is fine.  any other warnings I should know about?
617
618 2000-04-15  Thomas Helvey <tomh@inxpress.net>
619
620         * ircd/*.c: const correctness and type safety cleanups to
621         get code to compile with C++ compiler. Still has
622         signed/unsigned comparison warnings.
623
624 2000-04-15  Greg Sikorski <gte@atomicrevs.demon.co.uk>
625
626         * ircd/userload.c: change <sys/time.h> include to <time.h> for
627           portability.
628
629 2000-04-14  Kevin L. Mitchell  <klmitch@mit.edu>
630
631         * ircd/m_gline.c (mo_gline): d'oh, target isn't a numeric; use %C
632         and convert acptr...
633
634         * ircd/s_user.c: move gline_lookup function call into
635         register_user, where it'll have a username to lookup!
636
637         * ircd/m_gline.c: modify to utilize new sendcmdto_* series of
638         functions; also stuff send_error_to_client into return clauses
639
640         * ircd/m_jupe.c: modify to utilize new sendcmdto_* series of
641         functions; also use send_error_to_client where that makes sense
642
643         * ircd/jupe.c: modify to utilize new sendcmdto_* series of
644         functions; also use send_error_to_client where that makes sense
645
646         * ircd/gline.c: modify to utilize new sendcmdto_* series of
647         functions; also fix gline_lookup() to deal properly with remote
648         clients--boy, do struct Client and struct User need to be cleaned
649         up!
650
651         * ircd/ircd_snprintf.c (doprintf): a dest of &me is a server,
652         too...
653
654         * ircd/send.c: wrote sendcmdto_one(), vsendcmdto_one(), and
655         sendcmdto_serv_butone(), all utilizing the %v conversion of
656         ircd_snprintf()
657
658         * include/send.h: define IRC_BUFSIZE, max size of a message;
659         declare sendcmdto_one(), vsendcmdto_one(), and
660         sendcmdto_serv_butone()
661
662         * include/msg.h: define all the CMD_* constants needed to utilize
663         the new sendcmdto_* series of functions
664
665         * ircd/Makefile.in (SRC): list ircd_snprintf.c; run make depend
666
667         * ircd/gline.c: remove old, dead code.
668
669         * ircd/m_gline.c (mo_gline): disallow setting of global G-lines
670         unless CONFIG_OPERCMDS is enabled; disallow listing of all G-lines
671         (don't advertise proxies); remove dead code
672
673         * ircd/parse.c: oper handler for JUPE only lists jupes unless
674         CONFIG_OPERCMDS is enabled
675
676         * ircd/m_jupe.c (mo_jupe): don't compile mo_jupe() if
677         CONFIG_OPERCMDS is not enabled; we'll disable it in parse.c
678
679         * ircd/m_opmode.c (mo_opmode): if CONFIG_OPERCMDS is not enabled,
680         always return ERR_DISABLED
681
682         * ircd/m_clearmode.c (mo_clearmode): if CONFIG_OPERCMDS is not
683         enabled, always return ERR_DISABLED
684
685         * ircd/s_err.c: add error message to indicate disabled commands
686
687         * include/numeric.h (ERR_DISABLED): to indicate disabled commands
688
689         * doc/Configure.help: add documentation for CONFIG_OPERCMDS
690
691         * config/config-sh.in: add CONFIG_OPERCMDS, default both it and
692         CONFIG_NEW_MODE to 'y' for now
693
694         * ircd/gline.c (gline_list): fix a minor formatting bogon
695
696         * BUGS: since I fixed that bug, might as well mark it fixed.
697
698         * ircd/m_join.c: look up badchans with GLINE_EXACT
699
700         * ircd/m_gline.c: fix parc count problems; look up existing
701         G-lines with GLINE_EXACT; only set new lastmod when
702         activating/deactivating existing glines if old lastmod was not 0
703
704         * ircd/gline.c: forgot to copy the gline reason over; don't
705         propagate a gline with 0 lastmod if origin is user; add
706         GLINE_EXACT to force exact matching of gline mask
707
708         * ircd/ircd_snprintf.c (doprintf): forgot to deal with the zero
709         flag properly
710
711         * ircd/s_conf.c (find_kill): gline_find() takes a char *userhost,
712         but gline_lookup() actually takes a client--d'oh.
713
714 2000-04-13  Thomas Helvey <tomh@inxpress.net>
715         * ircd/IPcheck.c: Back port BLMet's bugfix from 2.10.10
716
717 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
718
719         * ircd/whocmds.c: Don't make idle flag default in /who, to prevent:
720           "/who * x"
721           "Gte3 H*iwg Gte@212.49.240.217 :1 :0 I am the one that was."
722           (Found by Plexus).
723
724         * ircd/whocmds.c: Change idle time calc from socket idle to user
725           idle.
726
727 2000-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
728
729         * config/aclocal.m4 (unet_CHECK_TYPE_SIZES): check size of void *,
730         too, for ircd_snprintf.c
731
732         * include/ircd_snprintf.h: documentation for ircd_(v)snprintf, in
733         comments; mostly descended from the Linux manpage for printf, but
734         also documenting the extensions.
735
736         * ircd/ircd_snprintf.c: NULL dest is equivalent to going to a
737         client; make 'q' be the same as 'L'; remove __inline__; only
738         define EXTENSION if HAVE_LONG_LONG is defined
739
740         * include/handlers.h: declare m_gline()
741
742         * ircd/parse.c: gline can be called by users, but it only lists
743         the glines.
744
745         * ircd/s_user.c (set_nick_name): resend gline if a remote server
746         introduces a glined client
747
748         * ircd/s_serv.c (server_estab): burst glines, too
749
750         * ircd/gline.c: fix up all the expire times to be offsets;
751         simplify gline_resend()
752
753         * ircd/m_gline.c: begin coding replacements for ms_gline(),
754         mo_gline(), and m_gline()
755
756         * ircd/gline.c (gline_add): allow *@#channel to work correctly;
757         also, prohibit local BADCHANs if LOCAL_BADCHAN not defined
758
759 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
760
761         * tools/Bouncer/*: Add comments/documentation/tags.
762         * tools/Bouncer/*: Add debug defines, make task fork().
763
764 2000-04-12  Thomas Helvey <tomh@inxpress.net>
765         * ircd/s_err.c: Cleanup s_err.c make one table so we
766         don't have to do anything tricky to get an error string.
767
768 2000-04-12  Greg Sikorski <gte@atomicrevs.demon.co.uk>
769         * Add port bouncer for http (x/w)
770
771 2000-04-12  Kevin L. Mitchell  <klmitch@mit.edu>
772
773         * ircd/s_conf.c (find_kill): replaced call to find_gline() with a
774         call to gline_find(); also used GlineReason() instead of direct
775         reference to structure member
776
777         * ircd/m_join.c (m_join): replace bad_channel() calls with calls
778         to gline_find(name, GLINE_BADCHAN), and also check to see if gline
779         is active
780
781         * ircd/channel.c: nothing seems to be called anywhere...
782
783         * ircd/s_err.c: update a couple of replies to dovetail with new
784         semantics
785
786         * ircd/gline.c: begin complete re-implementation of gline.c along
787         the lines of the final design of jupe.c
788
789         * include/gline.h: begin complete re-implementation of gline.c
790         along the lines of the final design of jupe.c
791
792         * ircd/channel.c (mode_process_clients): fix "Deop of +k user on
793         %s by %s" message...
794
795         * ircd/ircd_snprintf.c: my new snprintf()-like functions
796
797         * include/ircd_snprintf.h: my new snprintf()-like functions
798
799 2000-04-11  Thomas Helvey <tomh@inxpress.net>
800         * ircd/IPcheck.c: removed old dead code
801         * ircd/s_user.c (send_user_info): removed non-standard
802           user not found message for userhost/userip
803
804 2000-04-11  Greg Sikorski <gte@atomicrevs.demon.co.uk>
805
806         * ircd/s_err.c: Added missing quotes to ERR_DONTCHEAT numeric.
807         * doc/p10.html: Work on chapter 4.
808
809 2000-04-10  Kevin L. Mitchell  <klmitch@mit.edu>
810
811         * ircd/channel.c (mode_parse_client): fix coredump on /mode
812         #foobar +o nosuchnick
813
814 2000-04-10  Perry Lorier  <Isomer@coders.net>
815         * BUGS: Added bug.
816
817 2000-04-09  Thomas Helvey <tomh@inxpress.net>
818         * include/IPcheck.h: fix prototype
819         * ircd/s_user.c: fix usage of IPcheck_remote_connect
820         * ircd/IPcheck.c: removed unused args
821
822 2000-04-09  Thomas Helvey <tomh@inxpress.net>
823         * include/IPcheck.h: add proto for IPcheck_expire
824
825         * ircd/IPcheck.c: Rewrote
826
827         * ircd/ircd.c: Add IPcheck_expire to main message loop
828
829         * ircd/s_user.c: Redo target hashing, refactor target code
830
831         * include/numeric.h: Cleaned up numerics, added which ones are
832         in use by other networks and what they are in use for.
833
834         * ircd/channel.c: cleaned can_join(), allow anyone through anything
835         if /invited, simplified the function.  Opers overusing OPEROVERRIDE
836         will get a message explaining to them not to cheat.
837
838         * ircd/m_join.c: cleaned up the various join functions, should be
839         a lot more efficient.  Still needs work.  Now assumes that s<->s
840         won't send it a JOIN 0.  Service coders - note this and tread with
841         care.
842
843         * ircd/m_stats.c: added Gte-'s stats doc patch.
844
845         * ircd/m_version.c: /version now returns the 005 numeric as well.
846         as requested by Liandrin.
847
848
849 2000-04-07  Kevin L. Mitchell  <klmitch@mit.edu>
850
851         * ircd/m_clearmode.c: add include for support.h for write_log()
852
853         * configure: move ircd/crypt/* to tools/*
854
855 2000-04-06  Thomas Helvey <tomh@inxpress.net>
856         * ircd/s_auth.c: Shorten auth connect timeout to 60 seconds
857           set client host to server alias if connection from localhost
858
859 2000-04-06  Perry Lorier <isomer@coders.net>
860         * ircd/ircd.c: Fix core during pinging (oops)
861         
862 2000-04-06  Perry Lorier <isomer@coders.net>
863         * ircd/send.c: fixed wrong ident being sent to channels bug.
864         * include/numerics.h: Updated some of the numerics from other
865         networks.  Flagged some as 'unused' by undernet.
866
867 2000-03-30  Perry Lorier <isomer@coders.net>
868         * ircd/ircd.c: Lets see if this helps the ping problem at all.
869         * ircd/whocmds.c, /doc/readme.who: Added %l specifier to get idle
870         time for local clients. (as requested), extended who now returns all
871         the flags (@+!) so you can tell the complete state of a client.
872
873 2000-03-30  Thomas Helvey <tomh@inxpress.net>
874         * m_rping.c m_rpong.c: add Gte's rping/rpong fixes
875
876 2000-03-30  Perry Lorier <isomer@coders.net>
877         * ircd/parse.c: oops, missed opers.
878
879 2000-03-30  Perry Lorier <isomer@coders.net>
880         * ircd/parse.c: fixed mystifying ping bug thats been plaguing us
881         for so long.  Remember: m_ping MUST be in the parse array. :)
882
883 2000-03-30  Perry Lorier <isomer@coders.net>
884         * ircd/ircd.c: test in check_pings was wrong.  I move that we
885         disallow cvs commit after 10pm localtime....
886
887 2000-03-30  Perry Lorier <isomer@coders.net>
888         * ircd/m_pong.c: Fix it for servers too.
889
890 2000-03-30  Perry Lorier <isomer@coders.net>
891         * ircd/m_pong.c: Fix ping timeout bugs
892
893 2000-03-30  Perry Lorier <isomer@coders.net>
894         * ircd/channel.c: Bans had CurrentTime in their when field instead
895         of TStime()
896
897 2000-03-31  Thomas Helvey <tomh@ixpress.net>
898         * ircd/numnicks.c (SetXYYCapacity): fix for extended
899         numerics.
900
901 2000-03-30  Perry Lorier <isomer@coders.net>
902         * ircd/m_nick.c: send kills both ways so when we add nick change
903         on collision we don't desync the network.
904
905         * ircd/map.c: Fixup the map a bit more.
906
907 2000-03-31  Kevin L. Mitchell  <klmitch@mit.edu>
908
909         * ircd/m_clearmode.c (do_clearmode): Log the CLEARMODE to OPATH
910
911         * ircd/m_opmode.c: Log the mode changes to OPATH
912
913         * ircd/channel.c (modebuf_flush_int): Log the mode changes to
914         OPATH
915
916         * include/channel.h (MODEBUF_DEST_LOG): Log the mode changes to
917         OPATH
918
919         * doc/Configure.help: help text for CONFIG_LOG_OPMODE / OPATH
920
921         * config/config-sh.in: added OPATH for opmode log file
922
923         * ircd/m_clearmode.c (do_clearmode): updated uses of
924         modebuf_mode_string() for the new usage
925
926         * ircd/channel.c: added flag MODE_FREE and an int argument to
927         modebuf_mode_string() to indicate that the string must be free'd;
928         updated calls to modebuf_mode_string() for the new usage; called
929         collapse(pretty_mask()) on the ban string and use allocated memory
930         for it; added ban list length accounting; fixed a number of small
931         bugs in ban processing
932
933         * include/channel.h: added flag MODE_FREE and an int argument to
934         modebuf_mode_string() to indicate that the string must be free'd
935
936         * ircd/m_clearmode.c (do_clearmode): made sure clearmode removed
937         keys and limits that are set
938
939 2000-03-30  Perry Lorier <isomer@coders.net>
940         * ircd/ircd.c: rewrote check_pings() for maintainability
941         and speed.  Also changed quit msg's so they don't have
942         redundant nick[host] info in them.
943
944         * ircd/send.c: Changed write errors to report what error
945         occured (if possible).
946
947         * ircd/gline.c: added gline comment to the quit.
948
949         * ircd/m_server.c: Added suggestions to server quits mentioning
950         what went wrong so the admin can fix it earlier instead of asking
951         questions...
952
953         * ircd/map.c: Changed m_map() to hide numerics, show a * beside
954         servers that aren't fully burst yet.  And show '(--s)' for servers
955         where its not sure.
956
957         * doc/example.conf: Fixed wrapped U:
958
959 2000-03-30  Kevin L. Mitchell  <klmitch@mit.edu>
960
961         * ircd/m_mode.c (ms_mode): implemented a new m_mode in terms of
962         mode_parse() (version selectable at compile time)
963
964         * ircd/m_clearmode.c (mo_clearmode): clean_channelname(parv[1])
965
966         * ircd/m_opmode.c (mo_opmode): clean_channelname(parv[1])
967
968         * config/config-sh.in: add new config option to enable new m_mode
969         implementation
970
971         * doc/Configure.help: add documentation for new config option
972         CONFIG_NEW_MODE
973
974         * ircd/channel.c (mode_parse_client): /opmode #foobar -o -- 461
975         MODE -v : Not enough parameters
976
977         * ircd/m_clearmode.c (do_clearmode): do_clearmode() would remove
978         +k and +l even if they weren't set...
979
980         * ircd/m_opmode.c: implement the OPMODE command using mode_parse()
981
982         * ircd/channel.c: make mode_process_clients() clear the DEOPPED
983         flag; fix +s+p exclusivity; add MODE_ADD/MODE_DEL to flag list
984         for; test the 0-th member, not the i-th member, of the client
985         change state stuff
986
987         * ircd/m_clearmode.c (do_clearmode): use the new
988         mode_invite_clear() function
989
990         * ircd/channel.c: cleared up all the compile-time warnings and
991         errors
992
993         * include/channel.h: added declarations for mode_ban_invalidate()
994         and mode_invite_clear()
995
996         * ircd/channel.c: finished mode_parse(), then broke it up into a
997         dozen or so helper functions to make the code easier to read
998
999 2000-03-29  Thomas Helvey <tomh@inxpress.net>
1000         * ircd/ircd.c: refactor server initialization a bit, use
1001         getopt for parsing command line, refactor init_sys, main,
1002         and other bits.
1003
1004         * ircd/s_bsd.c: add functions for initialization to clean
1005         up logic a bit and remove duplicated code.
1006
1007         * include/ircd.h: add struct for server process related
1008         variables.
1009
1010 2000-03-29  Kevin L. Mitchell  <klmitch@mit.edu>
1011
1012         * ircd/channel.c: initial definition of mode_parse(); flags to
1013         prevent doing the same thing multiple times; helper method
1014         send_notoper() to send a "Not oper"/"Not on channel" notice
1015
1016         * include/channel.h: declare mode_parse() and helper flags
1017
1018         * ircd/channel.c (modebuf_flush_int): fiddled with timestamp
1019         sending to match the current action of set_mode() closely enough
1020         that hopefully there won't be major conflicts
1021
1022         * ircd/channel.c (modebuf_flush_int): consolidated the mode string
1023         building logic, reversed the order of the arguments to mode
1024         commands to have '-' preceed '+'
1025
1026 2000-03-29  Thomas Helvey <tomh@inxpress.net>
1027         * ircd/s_bsd.c (add_connection): don't disable socket options
1028         let OS tune itself and allow important performance tweaks to 
1029         work.
1030
1031 2000-03-28  Kevin L. Mitchell  <klmitch@mit.edu>
1032
1033         * ircd/channel.c (modebuf_flush_int): use %d, not %-15d; I got
1034         confused by set_mode, which is doing some really weird logic;
1035         guess what I'm going to rewrite next?  ;)
1036
1037 2000-03-28  Kevin L. Mitchell  <klmitch@emc.com>
1038
1039         * include/channel.h: added MODE_SAVE for the bounds checking stuff
1040         in modebuf_flush
1041
1042         * ircd/channel.c: make modebuf_flush into modebuf_flush_int and
1043         make it do bounds checking on the buffer; all modes are sent only
1044         if the all parameter is 1; modebuf_flush is the exported wrapper
1045
1046         * include/channel.h: add BOUNCE, renumber flags to get a little
1047         more space
1048
1049         * ircd/channel.c (modebuf_flush): don't overload HACK2, add
1050         BOUNCE; send DESYNCH message
1051
1052 2000-03-27  Kevin L. Mitchell  <klmitch@emc.com>
1053
1054         * ircd/m_clearmode.c (do_clearmode): only mark the modes the
1055         channel actually has in effect for deletion
1056
1057         * ircd/channel.c: added explanatory comments to all added
1058         functions; made flushing take place at the correct place even if
1059         the MODEBUF_DEST_DEOP flag is set; rewrote build_string() helper
1060         to bash some stupid bugs; made modebuf_flush() return if ModeBuf
1061         is empty, fixed the apparent source, removed some bogus string
1062         termination code, properly terminate the mode strings, add support
1063         for HACK2 and HACK3, made limit strings not be sent if the limit
1064         is being removed, changed where '+' and '-' come from in sent
1065         strings, added support for DEOP flag, set up bouncing code for
1066         HACK2
1067
1068         * ircd/Makefile.in: ran make depend
1069
1070         * include/channel.h: added new defines for future functionality,
1071         made modebuf_flush() return int so I can use tail recursion
1072
1073         * ircd/m_clearmode.c: add msg.h to includes; other misc cleanups
1074         to make it all compile
1075
1076         * ircd/m_opmode.c: add msg.h to includes...
1077
1078         * ircd/m_clearmode.c: implemented mo_clearchan()/ms_clearchan()
1079
1080         * ircd/channel.c (modebuf_flush): realized I forgot to
1081         nul-terminate addbuf/rembuf properly...
1082
1083         * ircd/m_clearmode.c (do_clearmode): wrote do_clearmode()...
1084
1085         * ircd/channel.c (modebuf_flush): correct sendto_server_butone to
1086         sendto_serv_butone--blah^2
1087
1088         * ircd/send.c (sendto_serv_butone): stupid comments confused me
1089
1090         * ircd/channel.c (modebuf_flush): if there are no mode changes to
1091         propagate, we're done...
1092
1093         * ircd/channel.c (modebuf_flush): duh; it's sendto_server_butone,
1094         not sendto_all_butone
1095
1096         * ircd/m_clearmode.c: define skeleton for m{o,s}_clearmode
1097
1098         * ircd/m_opmode.c: define skeleton for m{o,s}_opmode
1099
1100         * ircd/Makefile.in (SRC): added m_opmode() and m_clearmode() to
1101         the list
1102
1103         * ircd/parse.c: added messages for opmode and clearmode
1104
1105         * include/handlers.h: added declarations for mo_opmode(),
1106         ms_opmode(), mo_clearmode(), and ms_clearmode()
1107
1108         * include/msg.h: define MSG_OPMODE, TOK_OPMODE, MSG_CLEARMODE, and
1109         TOK_CLEARMODE
1110
1111         * include/channel.h (MODEBUF_DEST_OPMODE): Define the
1112         MODEBUF_DEST_OPMODE flag
1113
1114         * ircd/channel.c (modebuf_flush): added new flag,
1115         MODEBUF_DEST_OPMODE; causes channel MODE/HACK(4) notice to appear
1116         to originate from source's server (or source itself, if
1117         IsServer(source)); also causes a server-level MODE to be sent as
1118         OPMODE instead
1119
1120         * include/channel.h: defined MODEBUF_DEST_SERVER,
1121         MODEBUF_DEST_HACK4
1122
1123         * ircd/channel.c: Add another argument to build_string() to handle
1124         numeric nicks; implemented MODEBUF_DEST_SERVER to send MODEs to
1125         servers; implemented MODEBUF_DEST_HACK4 to cause HACK(4) notices
1126         to be sent out
1127
1128 2000-03-27  Perry Lorier <isomer@coders.net>
1129
1130         * ircd/s_bsd.c: fixed missing 'u' typo.
1131
1132 2000-03-26  Kevin L. Mitchell  <klmitch@emc.com>
1133
1134         * ircd/channel.c: implement modebuf_init(), _mode(), _mode_uint(),
1135         _mode_string(), _mode_client(), _flush(); also implemented a
1136         simple build_string()
1137
1138         * include/channel.h: added definition of ModeBuf, modebuf_*
1139         manipulation functions, and a couple of helper macros
1140
1141 2000-03-24 Thomas Helvey <tomh@inxpress.net>
1142   * numicks.c: convert extended numerics to use original mask version
1143   * numnicks.h: ""
1144   * s_user.c:
1145 2000-03-23 Thomas Helvey <tomh@inxpress.net>
1146   * Merge in changes from production
1147 2000-03-22 Thomas Helvey <tomh@inxpress.net>
1148   * numicks.c: Tweak to numnick generator to reduce possibility of duplicates.
1149   * rfc1459.unet: Add Maniac's documentation for /names 0
1150 * Fix misc. jupe bugs that somehow made it into the tree
1151 * Escape /names 0 to mean /names --Maniac
1152 * Don't core when server asks for info --Maniac 
1153 * Add Kev's jupe patch --Bleep
1154 * Add Maniacs squit patch --Bleep
1155 * Merge in u2_10_10_beta07 changes --Bleep
1156 * Merge in u2_10_10_beta06 changes --Bleep
1157 * Start ircu2.10.11 development, beta branch u2_10_10 --Bleep
1158 #-----------------------------------------------------------------------------
1159 #
1160 # ChangeLog for ircu2.10.11
1161 #
1162 # $Id: ChangeLog,v 1.139 2000-06-02 14:49:29 kev Exp $
1163 #
1164 # Insert new changes at beginning of the change list.
1165 #