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