[Twisted-Python] Twisted Endpoints and WebSocket / Autobahn

2013-12-12 Thread Tobias Oberstein
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

Re: [Twisted-Python] Queries about connecting to a XML-RPC server over IPv6

2013-12-12 Thread Amit Saha
- 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

Re: [Twisted-Python] Queries about connecting to a XML-RPC server over IPv6

2013-12-12 Thread Phil Mayers
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

Re: [Twisted-Python] Queries about connecting to a XML-RPC server over IPv6

2013-12-12 Thread Amit Saha
- 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

[Twisted-Python] Reliable way to check if Twisted has IPv6 support?

2013-12-12 Thread Amit Saha
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