Hi,
I am working on Twisted Endpoint support in Autobahn
https://github.com/tavendo/AutobahnPython.
So far, I made Autobahn able to talk WebSocket _over_ arbitrary Twisted
Endpoints, e.g. WebSocket over Unix domain sockets works. This is already quite
nifty.
Is there anything like Twisted End
- Original Message -
> From: "Amit Saha"
> To: "Twisted general discussion"
> Sent: Tuesday, December 10, 2013 11:59:27 AM
> Subject: Re: [Twisted-Python] Queries about connecting to a XML-RPC server
> over IPv6
>
>
>
> - Original Message -
> > From: "Phil Mayers"
> > To: t
On 12/12/13 12:23, Amit Saha wrote:
- Original Message -
From: "Amit Saha"
To: "Twisted general discussion"
Sent: Tuesday, December 10, 2013 11:59:27 AM
Subject: Re: [Twisted-Python] Queries about connecting to a XML-RPC server over
IPv6
- Original Message -
From: "Phil
- Original Message -
> From: "Phil Mayers"
> To: twisted-python@twistedmatrix.com
> Sent: Thursday, December 12, 2013 10:33:21 PM
> Subject: Re: [Twisted-Python] Queries about connecting to a XML-RPC server
> over IPv6
>
> On 12/12/13 12:23, Amit Saha wrote:
> >
> >
> > - Original
Hello,
I have a code path similar to:
if Twisted has IPv6:
# do this
else:
# do that
I came up with this:
Using 'getattr' to get a function which wouldn't exist if there was no IPv6
address as follows:
>>> from twisted.internet import abstract
>>> getattr(abstract, 'isIPv6Address')
Is