Twisted Matrix and multicast broadcast

2008-10-09 Thread Stodge
I'm trying to get a simple multicast application working using Twisted; so far I have: from twisted.internet.protocol import DatagramProtocol from twisted.internet import reactor from twisted.application.internet import MulticastServer class MulticastServerUDP(DatagramProtocol): def

Re: Twisted Matrix and multicast broadcast

2008-10-09 Thread Jean-Paul Calderone
On Thu, 9 Oct 2008 06:03:44 -0700 (PDT), Stodge [EMAIL PROTECTED] wrote: [snip] class MulticastServerUDP(DatagramProtocol): def startProtocol(self): print 'Started Listening' # Join a specific multicast group, which is the IP we will respond to

Re: Twisted Matrix and multicast broadcast

2008-10-09 Thread Stodge
On Oct 9, 9:33 am, Jean-Paul Calderone [EMAIL PROTECTED] wrote: On Thu, 9 Oct 2008 06:03:44 -0700 (PDT), Stodge [EMAIL PROTECTED] wrote: [snip] class MulticastServerUDP(DatagramProtocol):    def startProtocol(self):        print 'Started Listening'        # Join a specific multicast