Default qserver clients to being opers.
[srvx.git] / ChangeLog
1 # do not edit -- automatically generated by arch changelog
2 # arch-tag: automatic-ChangeLog--srvx@srvx.net--2006/srvx--devo--1.3
3 #
4
5 2006-09-23 00:55:02 GMT Michael Poole <mdpoole@troilus.org>     patch-46
6
7     Summary:
8       Default qserver clients to being opers.
9     Revision:
10       srvx--devo--1.3--patch-46
11
12     src/mod-qserver.c (qserver_accept): Default dummy client to having
13         usermode +o, so they can use privileged services.
14
15     modified files:
16      ChangeLog src/mod-qserver.c
17
18
19 2006-09-23 00:52:48 GMT Michael Poole <mdpoole@troilus.org>     patch-45
20
21     Summary:
22       Further giveownership confirmation fixes.
23     Revision:
24       srvx--devo--1.3--patch-45
25
26     src/chanserv.c (CSMSG_CONFIRM_GIVEOWNERSHIP): Prepend * to account name.
27       (cmd_giveownership): Check invoker access to determine need for confirmation.
28
29     modified files:
30      ChangeLog src/chanserv.c
31
32
33 2006-09-22 03:33:25 GMT Michael Poole <mdpoole@troilus.org>     patch-44
34
35     Summary:
36       Fix comment about +O vs +o.
37     Revision:
38       srvx--devo--1.3--patch-44
39
40     src/hash.h (FLAGS_OPER): The user mode is actually +o, not +O.
41
42     modified files:
43      ChangeLog src/hash.h
44
45
46 2006-09-22 03:28:08 GMT Michael Poole <mdpoole@troilus.org>     patch-43
47
48     Summary:
49       Fix license notice for mod-qserver.c
50     Revision:
51       srvx--devo--1.3--patch-43
52
53     src/mod-qserver.c: Since this was for public distribution, use the
54         standard GPL header notice.
55
56     modified files:
57      ChangeLog src/mod-qserver.c
58
59
60 2006-09-22 03:05:54 GMT Michael Poole <mdpoole@troilus.org>     patch-42
61
62     Summary:
63       Add win32 specific files to tarballs.
64     Revision:
65       srvx--devo--1.3--patch-42
66
67     Makefile.am (EXTRA_DIST): Include Makefile.win32.
68     
69     src/Makefile.am (EXTRA_srvx_SOURCES): Include config.h.win32 and ioset-win32.c.
70
71     modified files:
72      ChangeLog Makefile.am src/Makefile.am
73
74
75 2006-09-22 03:02:07 GMT Michael Poole <mdpoole@troilus.org>     patch-41
76
77     Summary:
78       First pass at native Win32 support (does not compile).
79     Revision:
80       srvx--devo--1.3--patch-41
81
82     src/compat.h: Handle Windows Sockets 2 headers.
83     
84     src/mod-memoserv.c (KEY_READ): #undef'ine to avoid its registry access
85         meaning on Windows.
86     
87     Makefile.win32: New Makefile for native or cross builds targeting Win32.
88     
89     src/config.h.win32: Pregenerated config.h for Win32.
90     
91     src/ioset-win32.c: First attempt at a Win32 ioset backend.
92
93     new files:
94      .arch-ids/Makefile.win32.id Makefile.win32
95      src/.arch-ids/config.h.win32.id src/.arch-ids/ioset-win32.c.id
96      src/config.h.win32 src/ioset-win32.c
97
98     modified files:
99      ChangeLog src/compat.h src/mod-memoserv.c
100
101
102 2006-09-22 02:51:50 GMT Michael Poole <mdpoole@troilus.org>     patch-40
103
104     Summary:
105       Add direct query server module.
106     Revision:
107       srvx--devo--1.3--patch-40
108
109     srvx.conf.example: Document qserver configuration.
110     
111     src/Makefile.am (EXTRA_srvx_SOURCES): Add mod-qserver.c.
112     
113     src/mod-qserver.c: New file.
114
115     new files:
116      src/.arch-ids/mod-qserver.c.id src/mod-qserver.c
117
118     modified files:
119      ChangeLog src/Makefile.am src/ioset-epoll.c srvx.conf.example
120
121
122 2006-09-22 02:45:20 GMT Michael Poole <mdpoole@troilus.org>     patch-39
123
124     Summary:
125       Add epoll_* ioset backend.
126     Revision:
127       srvx--devo--1.3--patch-39
128
129     configure.in: Check for epoll_create(); demote select() from being required.
130     
131     src/Makefile.am (EXTRA_srvx_SOURCES): Add ioset-epoll.c.
132     
133     src/ioset-epoll.c: New file.
134
135     new files:
136      src/.arch-ids/ioset-epoll.c.id src/ioset-epoll.c
137
138     modified files:
139      ChangeLog configure.in src/Makefile.am
140
141
142 2006-09-22 02:38:21 GMT Michael Poole <mdpoole@troilus.org>     patch-38
143
144     Summary:
145       Allow multiple ioset backends.
146     Revision:
147       srvx--devo--1.3--patch-38
148
149     configure.in: Add framework to check for ioset backends.
150     
151     src/Makefile.am (noinst_DATA): Reorganize for easier patching.
152       (checkversion): Avoid spurious error message if $(GNU_ARCH) is missing.
153       (EXTRA_srvx_SOURCES): Reorganize for easier patching; add ioset-select.c.
154       (srvx_SOURCES): Add ioset-impl.h.
155     
156     src/ioset.c (ioset.h): #include "ioset-impl.h" instead.
157       (clock_skew): Make non-static for backends.
158       (engine): New variable.
159       (active_fd): New variable (kind of kludgy).
160       (io_engine_*): New variables, only one exists so far.
161       (ioset_init): New function.
162       (ioset_cleanup): Call engine's cleanup function.
163       (ioset_add): Call engine's add function.
164       (ioset_listen): New function.
165       (ioset_connect): Call engine's update functions at appropriate points.
166       (ioset_try_write): Call engine's update function on success.
167       (ioset_close): Change signature; check against active_fd; call engine's
168         remove function.
169       (ioset_accept): New function.
170       (ioset_buffered_read): Update fd->state instead of fd->eof and call
171         engine's update function as appropriate.  Use active_fd.
172       (ioset_line_read): Check fd->state instead of fd->eof.
173       (debug_fdsets): Move to ioset-select.c.
174       (ioset_events): New function.
175       (ioset_run): Move most of the logic into ioset-select loop function;
176         call it.  Rename "select_timeout" to "timeout" to match.
177       (ioset_write): Call engine->update function.
178       (ioset_printf): New function.
179     
180     src/ioset.h (common.h): #include this header to get PRINTF_LIKE macro.
181       (struct io_fd): Replace 'connected' and 'eof' fields with 'state' field.
182       (ioset_init): Declare new function.
183       (ioset_listen): Declare new function.
184       (ioset_printf): Declare new function.
185       (ioset_close): Update signature.
186     
187     src/main.c (main): Call ioset_init().
188     
189     src/mod-sockcheck.c (sockcheck_free_client): Can unconditionally call
190         ioset_close() now.
191       (expand_var): Always use C99 type names.
192       (sockcheck_begin_test): Can unconditionally call ioset_close() now.
193       (sockcheck_read_conf): Only warn about unknown host if the user set
194         one; it is silly to arn about unknown host `(null)'.
195     
196     src/proto-common.c (socket_destroyed): Check fd->state rather than
197         fd->eof.
198       (close_socket): Update signature for ioset_close().
199
200     new files:
201      src/.arch-ids/ioset-impl.h.id src/.arch-ids/ioset-select.c.id
202      src/ioset-impl.h src/ioset-select.c
203
204     modified files:
205      ChangeLog configure.in src/Makefile.am src/ioset.c src/ioset.h
206      src/main.c src/mod-sockcheck.c src/proto-common.c
207
208
209 2006-09-22 02:15:55 GMT Michael Poole <mdpoole@troilus.org>     patch-37
210
211     Summary:
212       Add "dummy client" support.
213     Revision:
214       srvx--devo--1.3--patch-37
215
216     src/hash.h (FLAGS_DUMMY): New flag for non-propagated clients.
217       (IsDummy): Check it.
218     
219     src/helpfile.c (send_message): Allow sending to dummy clients.
220       (send_message_type): Likewise.
221     
222     src/proto-bahamut.c (irc_user): Bail if user is NULL or has a dummy nickname.
223       (deliver_to_dummy): New function.
224       (irc_privmsg): Try to deliver via dummy method before sending to IRC.
225       (irc_notice): Likewise.
226       (irc_notice_user): Likewise.
227       (AddUser): If the first user mode character is '*', mark as a dummy.
228       (DelUser): Unregister callback functions when destroying local clients.
229     
230     src/proto-p10.c (irc_user): Bail if user is NULL or has a dummy nickname.
231       (deliver_to_dummy): New function.
232       (irc_notice): Try to deliver via dummy method before sending to IRC.
233       (irc_notice_user): Likewise.
234       (irc_privmsg): Likewise.
235       (AddUser): If the first user mode character is '*', mark as a dummy.
236       (DelUser): Unregister callback functions when destroying local clients.
237
238     modified files:
239      ChangeLog src/hash.h src/helpfile.c src/proto-bahamut.c
240      src/proto-p10.c
241
242
243 2006-09-22 01:56:07 GMT Michael Poole <mdpoole@troilus.org>     patch-36
244
245     Summary:
246       Delete obsolete and non-propagated user modes.
247     Revision:
248       srvx--devo--1.3--patch-36
249
250     src/hash.h (FLAGS_LOCOP): Delete.
251       (FLAGS_SERVNOTICE): Delete.
252       (FLAGS_HELPER): Delete.
253       (IsServNotice): Delete.
254       (IsHelperIrcu): Delete.
255     
256     src/opserv.c (cmd_whois): Remove IsServNotice() or IsHelperIrcu().
257     
258     src/proto-bahamut.c (mod_usermode): Do not handle +O/+s/+h, we never see them.
259     
260     src/proto-p10.c (irc_user): Do not emit +s or +h, we never set them..
261       (mod_usermode): Do not handle +O/+s/+h, we never see them.
262
263     modified files:
264      ChangeLog src/hash.h src/opserv.c src/proto-bahamut.c
265      src/proto-p10.c
266
267
268 2006-09-22 01:48:00 GMT Michael Poole <mdpoole@troilus.org>     patch-35
269
270     Summary:
271       Merge AddService(), AddClone() into AddLocalUser()
272     Revision:
273       srvx--devo--1.3--patch-35
274
275     src/chanserv.c (init_chanserv): Convert AddService() call to AddLocalUser().
276     
277     src/global.c (init_global): Likewise.
278     
279     src/mod-helpserv.c (register_helpserv): Likewise.
280     
281     src/modcmd.c (cmd_service_add): Likewise.
282       (modcmd_load_bots): Likewise.
283     
284     src/nickserv.c (regex.h): Fall back to rxposix.h from local rx package.
285       (init_nickserv): Convert AddService() call to AddLocalUser().
286     
287     src/opserv.c (opserv_add_reserve): Convert AddClone() call to AddLocalUser().
288       (cmd_clone): Likewise.
289       (add_reserved): Likewise.
290       (init_opserv): Convert AddService() call to AddLocalUser().
291     
292     src/proto-bahamut.c (AddService): Convert into AddLocalUser().
293       (AddClone): Delete.
294     
295     src/proto-p10.c (AddService): Convert into AddLocalUser().
296       (AddClone): Delete.
297     
298     src/proto.h (AddService): Convert into AddLocalUser().
299       (AddClone): Delete.
300
301     modified files:
302      ChangeLog src/chanserv.c src/global.c src/mod-helpserv.c
303      src/modcmd.c src/nickserv.c src/opserv.c src/proto-bahamut.c
304      src/proto-p10.c src/proto.h
305
306
307 2006-09-22 01:35:03 GMT Michael Poole <mdpoole@troilus.org>     patch-34
308
309     Summary:
310       Make IRC message handler 'text' const.
311     Revision:
312       srvx--devo--1.3--patch-34
313
314     src/chanserv.c (chanserv_ctcp_check): Make 'text' parameter const.
315     
316     src/mod-helpserv.c (helpserv_usermsg): Likewise.
317       (helpserv_botmsg): Likewise.
318     
319     src/modcmd.c (svccmd_invoke): Likewise.
320       (modcmd_privmsg): Likewise.
321       (modcmd_chanmsg): Likewise.
322     
323     src/modcmd.h (SVCMSG_HOOK): Likewise.
324     
325     src/proto.h (chanmsg_func_t): Likewise.
326       (privmsg_func_t): Likewise.
327
328     modified files:
329      ChangeLog src/chanserv.c src/mod-helpserv.c src/modcmd.c
330      src/modcmd.h src/proto.h
331
332
333 2006-09-22 01:23:43 GMT Michael Poole <mdpoole@troilus.org>     patch-33
334
335     Summary:
336       Add autogen.sh to distribution tarball.
337     Revision:
338       srvx--devo--1.3--patch-33
339
340     Makefile.am: Add autogen.sh to the "extra" distributed files.
341
342     modified files:
343      ChangeLog Makefile.am
344
345
346 2006-09-11 01:03:14 GMT Michael Poole <mdpoole@troilus.org>     patch-32
347
348     Summary:
349       Support and use G-line lastmod timestamp.
350     Revision:
351       srvx--devo--1.3--patch-32
352
353     src/gline.c (KEY_LASTMOD): New key string.
354       (gline_add): Use new parameter to set lastmod.
355       (gline_add_record): Look for KEY_LASTMOD values.
356       (gline_write_entry): Set KEY_LASTMOD if lastmod is set.
357       (gline_discrim_create): Allow specification of lastmod criteria.
358       (gline_discrim_match): Check lastmod if appropriate.
359     
360     src/gline.h (struct gline): Add lastmod field.
361       (struct gline_discrim): Add lastmod fields.
362       (gline_add): New parameter.
363     
364     src/mod-sockcheck.c (sockcheck_issue_gline): Set lastmod.
365     
366     src/opserv.c (OSMSG_NO_GLINE): New format string.
367       (opserv_block): Set lastmod.
368       (cmd_gline): Set lastmod.
369       (cmd_stats_glines): Allow searching for a particular G-line (just like
370         gtrace).
371       (opserv_new_user_check): Set lastmod.
372       (gtrace_print_func): Use intervals rather than fixed dates and show
373         lastmod.
374     
375     src/opserv.help (GTRACE CRITERIA): Mention lastmod criteria.
376     
377     src/proto-p10.c (irc_gline): Send lastmod if it is set.
378       (cmd_num_gline): Parse out lastmod if it is set.
379       (cmd_gline): Parse out lastmod if it is set.
380
381     modified files:
382      ChangeLog src/gline.c src/gline.h src/mod-sockcheck.c
383      src/opserv.c src/opserv.help src/proto-p10.c
384
385
386 2006-09-09 21:37:28 GMT Michael Poole <mdpoole@troilus.org>     patch-31
387
388     Summary:
389       Network event handler fixup when ChanServ is disabled.
390     Revision:
391       srvx--devo--1.3--patch-31
392
393     src/chanserv.c (init_chanserv): Do not register network event handlers if
394         ChanServ is disabled.
395
396     modified files:
397      ChangeLog src/chanserv.c
398
399
400 2006-09-03 15:24:48 GMT Michael Poole <mdpoole@troilus.org>     patch-30
401
402     Summary:
403       Make srvx compile on cygwin again.
404     Revision:
405       srvx--devo--1.3--patch-30
406
407     configure.in (AC_CHECK_HEADERS): Look for <arpa/inet.h>.
408       (AC_CHECK_FUNCS): Look for inet_aton().
409     
410     src/compat.c: Try to include <arpa/inet.h> so we get inet_addr().
411       (getaddrinfo): If inet_aton() is not provided, use inet_addr() instead.
412     
413     src/compat.h (AI_NUMERICHOST): Define this too.
414     
415     src/tools.c (irc_pton): Use the pedantically correct type for ip4.
416
417     modified files:
418      ChangeLog configure.in src/compat.c src/compat.h src/tools.c
419
420
421 2006-09-03 15:21:10 GMT Michael Poole <mdpoole@troilus.org>     patch-29
422
423     Summary:
424       DelChannelUser call and semantic fixups
425     Revision:
426       srvx--devo--1.3--patch-29
427
428     src/hash.c (DelChannel): Fix type of 'reason' arg to DelChannelUser().
429       (DelChannelUser): Only send part message if user is local.
430     
431     src/proto-bahamut.c (DelUser): Unswap arguments to DelChannelUser().
432       (cmd_part): Move to proto-common.c.
433     
434     src/proto-common.c (part_desc): New structure type.
435       (part_helper): Use it to capture user and reason.
436       (cmd_part): New common function.
437     
438     src/proto-p10.c (cmd_part): Move to proto-common.c.
439       (DelUser): Unswap arguments to DelChannelUser().
440
441     modified files:
442      ChangeLog src/hash.c src/proto-bahamut.c src/proto-common.c
443      src/proto-p10.c
444
445
446 2006-09-03 15:17:05 GMT Michael Poole <mdpoole@troilus.org>     patch-28
447
448     Summary:
449       Do not try to moderate join-flood channels with no OpServ.
450     Revision:
451       srvx--devo--1.3--patch-28
452
453     src/opserv.c (opserv_join_check): As feigling points out, it is bad for a
454         service that does not exist to join a channel and hack modes.
455
456     modified files:
457      ChangeLog src/opserv.c
458
459
460 2006-09-03 15:13:31 GMT Michael Poole <mdpoole@troilus.org>     patch-27
461
462     Summary:
463       Fix ounregnick access check.
464     Revision:
465       srvx--devo--1.3--patch-27
466
467     src/nickserv.c (cmd_ounregnick): Use the standard rank-checking function.
468
469     modified files:
470      ChangeLog src/nickserv.c
471
472
473 2006-09-03 15:11:29 GMT Michael Poole <mdpoole@troilus.org>     patch-26
474
475     Summary:
476       Fix giveownership to how it should be
477     Revision:
478       srvx--devo--1.3--patch-26
479
480     src/chanserv.c (cmd_giveownership): Only require confirmation code if the
481       user has real (normal) access and is not forcing the giveownership.
482
483     modified files:
484      ChangeLog
485
486
487 2006-09-03 15:10:58 GMT Michael Poole <mdpoole@troilus.org>     patch-25
488
489     Summary:
490       Fix giveownership to how it should be
491     Revision:
492       srvx--devo--1.3--patch-25
493
494     src/chanserv.c (cmd_giveownership): Only require confirmation code if the
495       user has real (normal) access and is not forcing the giveownership.
496
497     modified files:
498      ChangeLog src/chanserv.c
499
500
501 2006-08-19 13:31:08 GMT Michael Poole <mdpoole@troilus.org>     patch-24
502
503     Summary:
504       Mark channels as visited when high-level users leave.
505     Revision:
506       srvx--devo--1.3--patch-24
507
508     src/chanserv.c (handle_part): At ThiefMaster's suggestion, update a
509       channel's visited time when a high-level user leaves (parts, gets
510       kicked, or quits).
511
512     modified files:
513      ChangeLog src/chanserv.c
514
515
516 2006-08-07 03:11:10 GMT Michael Poole <mdpoole@troilus.org>     patch-23
517
518     Summary:
519       Require confirmation cookie for giveownership.
520     Revision:
521       srvx--devo--1.3--patch-23
522
523     src/chanserv.c (CSMSG_CONFIRM_GIVEOWNERSHIP): New translation string.
524       (cmd_giveownership): Fail for non-force unconfirmed giveownerships.
525
526     modified files:
527      ChangeLog src/chanserv.c
528
529
530 2006-07-29 01:36:39 GMT Michael Poole <mdpoole@troilus.org>     patch-22
531
532     Summary:
533       Add CSMSG_INVALID_CFLAG string.
534     Revision:
535       srvx--devo--1.3--patch-22
536
537     src/chanserv.c (msgtab): Add entry for "CSMSG_INVALID_CFLAG".
538
539     modified files:
540      ChangeLog src/chanserv.c
541
542
543 2006-07-29 01:34:17 GMT Michael Poole <mdpoole@troilus.org>     patch-21
544
545     Summary:
546       Fix ?csearch max timestamp default value.
547     Revision:
548       srvx--devo--1.3--patch-21
549
550     src/opserv.c (opserv_cdiscrim_create): Fix default value for max_ts.
551         (With an expression only a coder could love.  Improvements wanted.)
552
553     modified files:
554      ChangeLog src/opserv.c
555
556
557 2006-07-18 03:13:31 GMT Michael Poole <mdpoole@troilus.org>     patch-20
558
559     Summary:
560       Update arch-inventory files for in-tree builds.
561     Revision:
562       srvx--devo--1.3--patch-20
563
564     .arch-inventory: Add "libtool" as a preserved file.
565     
566     src/.arch-inventory: Add ".libs" as a preserved directory.  Put a \
567         before the . in .cvsignore to avoid capturing too much.
568
569     modified files:
570      .arch-inventory ChangeLog src/.arch-inventory
571
572
573 2006-07-18 02:48:32 GMT Michael Poole <mdpoole@troilus.org>     patch-19
574
575     Summary:
576       Make !bans searching more flexible
577     Revision:
578       srvx--devo--1.3--patch-19
579
580     src/chanserv.c (cmd_bans): Allow specifying a complete hostmask or a
581         nickname when searching bans.
582     
583     src/chanserv.help (BANS): Document the searching functions.
584
585     modified files:
586      ChangeLog src/chanserv.c src/chanserv.help
587
588
589 2006-07-18 01:49:56 GMT Michael Poole <mdpoole@troilus.org>     patch-18
590
591     Summary:
592       Simplify cdiscrim_match() max tests.
593     Revision:
594       srvx--devo--1.3--patch-18
595
596     src/opserv.c (opserv_cdiscrim_create): Explicitly initialize max_users
597         and max_ts.
598       (cdiscrim_match): Simplify the bounds tests for timestamp and users.
599
600     modified files:
601      ChangeLog src/opserv.c
602
603
604 2006-07-18 01:46:10 GMT Michael Poole <mdpoole@troilus.org>     patch-17
605
606     Summary:
607       Fix reclaim KILL behavior.
608     Revision:
609       srvx--devo--1.3--patch-17
610
611     src/nickserv.c (nickserv_reclaim): Use DelUser() instead of irc_kill(),
612         so that srvx's databases are appropriately updated.
613
614     modified files:
615      ChangeLog src/nickserv.c
616
617
618 2006-07-18 01:12:16 GMT Michael Poole <mdpoole@troilus.org>     patch-16
619
620     Summary:
621       Fix typo in English error message text.
622     Revision:
623       srvx--devo--1.3--patch-16
624
625     src/chanserv.c (CSMSG_TOPICMASK_CONFLICT2): Add missing "is".  Reported
626       by Harm, by way of Byte.
627
628     modified files:
629      ChangeLog src/chanserv.c
630
631
632 2006-05-14 02:54:24 GMT Michael Poole <mdpoole@troilus.org>     patch-15
633
634     Summary:
635       Update version tag for 1.3.1 release.
636     Revision:
637       srvx--devo--1.3--patch-15
638
639     configure.in: Update version tag for 1.3.1 release.
640
641     modified files:
642      ChangeLog configure.in
643
644
645 2006-05-02 02:46:39 GMT Michael Poole <mdpoole@troilus.org>     patch-14
646
647     Summary:
648       Make some ChanServ ban checks see through hidden hosts.
649     Revision:
650       srvx--devo--1.3--patch-14
651
652     src/chanserv.c (handle_join): Make this function see through hidden
653         hosts when matching users against bans.  Add comment before the
654         non-burst section; remove a redundant burst check there.
655       (handle_auth): See through hidden hosts when checking against active
656         bans.  Inactive ban check keeps MATCH_VISIBLE since bans on the true
657         hostname should have already been applied.
658       (handle_nick_change): Same as handle_auth.
659
660     modified files:
661      ChangeLog src/chanserv.c
662
663
664 2006-04-29 03:11:35 GMT Michael Poole <mdpoole@troilus.org>     patch-13
665
666     Summary:
667       Fix visible matching for fake and +x-hidden hosts.
668     Revision:
669       srvx--devo--1.3--patch-13
670
671     src/tools.c (user_matches_glob): Use correct test to determine whether
672         the user's host is hidden.
673
674     modified files:
675      ChangeLog src/tools.c
676
677
678 2006-04-07 00:56:38 GMT Michael Poole <mdpoole@troilus.org>     patch-12
679
680     Summary:
681       Fix a +o mode parsing error.
682     Revision:
683       srvx--devo--1.3--patch-12
684
685     src/proto-p10.c (mod_chanmode_parse): Check that the input argument after
686         +o is a valid one.
687
688     modified files:
689      ChangeLog src/proto-p10.c
690
691
692 2006-04-06 02:19:47 GMT Michael Poole <mdpoole@troilus.org>     patch-11
693
694     Summary:
695       Fix some IPv6 address compatibility issues.
696     Revision:
697       srvx--devo--1.3--patch-11
698
699     src/proto-p10.c (irc_p10_pton): Mark valid IPv4 addresses as v4-mapped.
700       (irc_p10_ntop): Emit invalid IPs as AAAAAA (but it could be _ for +6
701         flagged hubs).
702
703     modified files:
704      ChangeLog src/proto-p10.c
705
706
707 2006-04-05 02:07:30 GMT Michael Poole <mdpoole@troilus.org>     patch-10
708
709     Summary:
710       Fix a possible warning without debugging.
711     Revision:
712       srvx--devo--1.3--patch-10
713
714     src/alloc-slab.c (slab_unalloc): If assert() is #define'd to be empty,
715         then size is unused.  Include a (void)size to quash a warning.
716
717     modified files:
718      ChangeLog src/alloc-slab.c
719
720
721 2006-04-05 02:02:21 GMT Michael Poole <mdpoole@troilus.org>     patch-9
722
723     Summary:
724       Fix hostmask error from last year's patch-28.
725     Revision:
726       srvx--devo--1.3--patch-9
727
728     src/proto-common.c (generate_hostmask): When generating a strict hostmask
729         not by IP, we should keep the original hostname.
730
731     modified files:
732      ChangeLog src/proto-common.c
733
734
735 2006-04-05 01:59:54 GMT Michael Poole <mdpoole@troilus.org>     patch-8
736
737     Summary:
738       Fix compilation error with slab allocator and no debugging.
739     Revision:
740       srvx--devo--1.3--patch-8
741
742     src/alloc-slab.c (verify): Undefine as a macro before defining as a
743         function.
744
745     modified files:
746      ChangeLog src/alloc-slab.c
747
748
749 2006-04-05 00:24:50 GMT Michael Poole <mdpoole@troilus.org>     patch-7
750
751     Summary:
752       Fix backtracking bug after an escaped character.
753     Revision:
754       srvx--devo--1.3--patch-7
755
756     src/tools.c (match_ircglob): Fix backtracking behavior when an escaped
757         character did not match.
758
759     modified files:
760      ChangeLog src/tools.c
761
762
763 2006-04-05 00:11:31 GMT Michael Poole <mdpoole@troilus.org>     patch-6
764
765     Summary:
766       Advise the kernel that we will scan DB files sequentially.
767     Revision:
768       srvx--devo--1.3--patch-6
769
770     src/recdb.c (parse_database): Advise the kernel that we will scan the
771         recdb file sequentially, just in case it cannot notice the access
772         pattern on its own.
773
774     modified files:
775      ChangeLog src/recdb.c
776
777
778 2006-04-05 00:09:48 GMT Michael Poole <mdpoole@troilus.org>     patch-5
779
780     Summary:
781       Correctly implement AsLL pong.
782     Revision:
783       srvx--devo--1.3--patch-5
784
785     src/proto-p10.c (irc_pong_asll): New function.
786       (cmd_ping): Use it.
787
788     modified files:
789      ChangeLog src/proto-p10.c
790
791
792 2006-04-05 00:08:04 GMT Michael Poole <mdpoole@troilus.org>     patch-4
793
794     Summary:
795       Add missing underscore in translation key string.
796     Revision:
797       srvx--devo--1.3--patch-4
798
799     src/mod-helpserv.c (helpserv_usermsg): Add a missing underscore between
800         REQUEST and NOT.
801
802     modified files:
803      ChangeLog src/mod-helpserv.c
804
805
806 2006-04-05 00:05:59 GMT Michael Poole <mdpoole@troilus.org>     patch-3
807
808     Summary:
809       Update configure.in; support both baz and tla; avoid using dirent.
810     Revision:
811       srvx--devo--1.3--patch-3
812
813     configure.in: Remove AC_PROG_RANLIB since we never use ranlib.  Add
814         AC_PROG_LIBTOOL since we do use libtool.  Set GNU_ARCH and
815         HAS_GNU_ARCH based on whether the system has baz or tla.  Do not
816         check for dirent.d_type.
817     
818     src/Makefile.am: Make the "checkversion" target conditional on
819         HAS_GNU_ARCH, and use the detected $(GNU_ARCH).
820     
821     src/helpfile.c (language_read): Report error text when unable to open a
822         language directory.
823       (language_read_list): Always stat the language entry to determine
824         whether it is a directory; Cygwin has no dirent.d_type and ReiserFS
825         has a broken one.
826
827     modified files:
828      ChangeLog configure.in src/Makefile.am src/helpfile.c
829
830
831 2006-04-05 00:00:57 GMT Michael Poole <mdpoole@troilus.org>     patch-2
832
833     Summary:
834       Update ChangeLog (again?!), ltmain.sh and rx/Makefile.in
835     Revision:
836       srvx--devo--1.3--patch-2
837
838     ChangeLog: Update again (it didn't take, for some strange reason).
839     
840     ltmain.sh: Update to current version.
841     
842     rx/Makefile.in: Regenerate to match.
843
844     modified files:
845      ChangeLog ltmain.sh rx/Makefile.in
846
847
848 2006-04-04 23:58:31 GMT Michael Poole <mdpoole@troilus.org>     patch-1
849
850     Summary:
851       Rotate ChangeLog for the new year's archive.
852     Revision:
853       srvx--devo--1.3--patch-1
854
855     ChangeLog: Update for the new year's archive.
856
857     modified files:
858      .arch-ids/ChangeLog.id ChangeLog
859
860
861 2006-04-04 23:42:39 GMT Michael Poole <mdpoole@troilus.org>     base-0
862
863     Summary:
864       tag of srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-36
865     Revision:
866       srvx--devo--1.3--base-0
867
868     (automatically generated log message)
869
870     new patches:
871      sp@gamesurge.net--2005/srvx--sp--1.3--patch-1
872      sp@gamesurge.net--2005/srvx--sp--1.3--patch-2
873      srvx@srvx.net--2004-srvx/srvx--devo--1.3--base-0
874      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-1
875      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-2
876      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-3
877      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-4
878      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-5
879      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-6
880      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-7
881      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-8
882      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-9
883      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-10
884      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-11
885      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-12
886      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-13
887      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-14
888      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-15
889      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-16
890      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-17
891      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-18
892      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-19
893      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-20
894      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-21
895      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-22
896      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-23
897      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-24
898      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-25
899      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-26
900      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-27
901      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-28
902      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-29
903      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-30
904      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-31
905      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-32
906      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-33
907      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-34
908      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-35
909      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-36
910      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-37
911      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-38
912      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-39
913      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-40
914      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-41
915      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-42
916      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-43
917      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-44
918      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-45
919      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-46
920      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-47
921      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-48
922      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-49
923      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-50
924      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-51
925      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-52
926      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-53
927      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-54
928      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-55
929      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-56
930      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-57
931      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-58
932      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-59
933      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-60
934      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-61
935      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-62
936      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-63
937      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-64
938      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-65
939      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-66
940      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-67
941      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-68
942      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-69
943      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-70
944      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-71
945      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-72
946      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-73
947      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-74
948      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-75
949      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-76
950      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-77
951      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-78
952      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-79
953      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-80
954      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-81
955      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-82
956      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-83
957      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-84
958      srvx@srvx.net--2005-srvx/srvx--devo--1.3--base-0
959      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-1
960      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-2
961      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-3
962      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-4
963      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-5
964      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-6
965      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-7
966      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-8
967      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-9
968      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-10
969      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-11
970      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-12
971      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-13
972      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-14
973      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-15
974      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-16
975      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-17
976      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-18
977      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-19
978      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-20
979      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-21
980      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-22
981      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-23
982      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-24
983      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-25
984      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-26
985      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-27
986      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-28
987      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-29
988      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-30
989      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-31
990      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-32
991      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-33
992      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-34
993      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-35
994      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-36
995
996