Thank you very much!<br>
You've been a GREAT help :D<br>
<br><div><span class="gmail_quote">2005/6/21, Christopher Armstrong &lt;<a href="mailto:radeex@gmail.com">radeex@gmail.com</a>&gt;:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I suggest, instead of using the stock &quot;Factory&quot;, making a subclass of<br>it with buildProtocol implemented like so:<br><br>def buildProtocol(self, addr):<br>&nbsp;&nbsp;&nbsp;&nbsp;p = Factory.buildProtocol(self, addr)<br>&nbsp;&nbsp;&nbsp;&nbsp;self.connections.append
(p)<br>&nbsp;&nbsp;&nbsp;&nbsp;return p<br><br>Or similar (you'll have to define the 'connections' list yourself in<br>__init__). In the protocol's connectionLost, you could then remove the<br>protocol from that list.<br><br></blockquote></div>
<br>