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