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