]> jfr.im git - irc.git/blob - software/!RELEASES/ircservices/achurch.org/services/lists/ircservices-coding/2002/000846.html
RELEASE -> !RELEASE
[irc.git] / software / !RELEASES / ircservices / achurch.org / services / lists / ircservices-coding / 2002 / 000846.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
2 <HTML>
3 <HEAD>
4 <TITLE> [IRCServices Coding] feature request
5 </TITLE>
6 <LINK REL="Index" HREF="index.html" >
7 <LINK REL="made" HREF="mailto:ircservices-coding%40ircservices.za.net?Subject=%5BIRCServices%20Coding%5D%20feature%20request&In-Reply-To=002801c20a1b%247f060190%2401000001%40aragon">
8 <META NAME="robots" CONTENT="index,nofollow">
9 <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
10 <LINK REL="Previous" HREF="000845.html">
11 <LINK REL="Next" HREF="000850.html">
12 </HEAD>
13 <BODY BGCOLOR="#ffffff">
14 <H1>[IRCServices Coding] feature request</H1>
15 <B>Sean Kelly</B>
16 <A HREF="mailto:ircservices-coding%40ircservices.za.net?Subject=%5BIRCServices%20Coding%5D%20feature%20request&In-Reply-To=002801c20a1b%247f060190%2401000001%40aragon"
17 TITLE="[IRCServices Coding] feature request">smkelly at zombie.org
18 </A><BR>
19 <I>Sun Jun 2 03:19:26 PDT 2002</I>
20 <P><UL>
21 <LI>Previous message: <A HREF="000845.html">[IRCServices Coding] feature request
22 </A></li>
23 <LI>Next message: <A HREF="000850.html">[IRCServices Coding] feature request
24 </A></li>
25 <LI> <B>Messages sorted by:</B>
26 <a href="date.html#846">[ date ]</a>
27 <a href="thread.html#846">[ thread ]</a>
28 <a href="subject.html#846">[ subject ]</a>
29 <a href="author.html#846">[ author ]</a>
30 </LI>
31 </UL>
32 <HR>
33 <!--beginarticle-->
34 <PRE>On Sun, Jun 02, 2002 at 11:54:30AM +0200, Aragon Gouveia wrote:
35 &gt;<i> Hi,
36 </I>&gt;<i>
37 </I>&gt;<i> I'm eagerly awaiting 5.0 and would love to see this feature in it.
38 </I>&gt;<i>
39 </I>&gt;<i> Support for mlock channel mode L when compiled for Unreal (3.2). The mode is
40 </I>&gt;<i> used to &quot;link&quot; channels and must be accompanied by an l mode to set a user
41 </I>&gt;<i> limit. The mode takes one parameter, the target channel.
42 </I>&gt;<i>
43 </I>&gt;<i> eg. MODE #chan1 +lL 5 #chan2
44 </I>&gt;<i>
45 </I>&gt;<i> Would make users automatically join #chan2 when #chan1 reaches the 5 user
46 </I>&gt;<i> limit.
47 </I>
48 This already exists in Services 5.0pre0. From modules/protocol/unreal.c:
49
50 static const struct modedata_init new_chanmodes[] = {
51 ...
52 {'L', {0x01000000,1,0}}, /* Channel link */
53 ...
54
55 static int do_channel_mode(const char *source, Channel *channel,
56 int modechar, int add, char **av)
57 {
58 ...
59 case 'L':
60 free(channel-&gt;link);
61 if (add) {
62 channel-&gt;mode |= flag;
63 channel-&gt;link = sstrdup(av[0]);
64 ..
65
66 I don't use Unreal, so I can't guarentee that it works. It looks like it
67 should though.
68
69 --
70 Sean Kelly | PGP KeyID: 77042C7B
71 <A HREF="http://www.ircservices.za.net/mailman/listinfo/ircservices-coding">smkelly at zombie.org</A> | <A HREF="http://www.zombie.org">http://www.zombie.org</A>
72 -------------- next part --------------
73 A non-text attachment was scrubbed...
74 Name: not available
75 Type: application/pgp-signature
76 Size: 187 bytes
77 Desc: not available
78 Url : <A HREF="../attachments/20020602/af16ee9f/attachment.pgp">../attachments/20020602/af16ee9f/attachment.pgp</A>
79 </PRE>
80
81 <!--endarticle-->
82 <HR>
83 <P><UL>
84 <!--threads-->
85 <LI>Previous message: <A HREF="000845.html">[IRCServices Coding] feature request
86 </A></li>
87 <LI>Next message: <A HREF="000850.html">[IRCServices Coding] feature request
88 </A></li>
89 <LI> <B>Messages sorted by:</B>
90 <a href="date.html#846">[ date ]</a>
91 <a href="thread.html#846">[ thread ]</a>
92 <a href="subject.html#846">[ subject ]</a>
93 <a href="author.html#846">[ author ]</a>
94 </LI>
95 </UL>
96
97 </body></html>