Re: [Twisted-Python] listenTCP & listenSSL failing silently?

2014-02-27 Thread Matthew Pounsett
On Feb 27, 2014, at 07:31 , Glyph wrote: > On Feb 26, 2014, at 7:41 PM, Matthew Pounsett wrote: > >> In the above code block > > Before I start speculating as to what might be wrong, can you please attach > an SSCCE that fully demonstrates the problem? > listenTCP a

Re: [Twisted-Python] Where are the documentation files?

2014-02-27 Thread Daniel Sank
>> Also, do you have any idea when the new documentation system will up and >> ready for contributions? >> > It's up and running; there should be a lot less need for documentation > (although > as you pointed out the current docs are wrong) because sphinx is better > understood generally in the wi

Re: [Twisted-Python] Where are the documentation files?

2014-02-27 Thread Glyph
On Feb 13, 2014, at 2:53 AM, Daniel Sank wrote: > > For now. Feel free to report errors and suggest new text for the site. > > Right. What is the appropriate channel to report errors with the website? Sorry I didn't answer this more promptly. I think the best answer right now is

Re: [Twisted-Python] listenTCP & listenSSL failing silently?

2014-02-27 Thread Glyph
On Feb 26, 2014, at 7:41 PM, Matthew Pounsett wrote: > In the above code block Before I start speculating as to what might be wrong, can you please attach an SSCCE that fully demonstrates the problem? listenTCP and listenSSL definitely work on my computer ;-) -glyph__

Re: [Twisted-Python] Issues stemming from CVE-2014-1912?

2014-02-27 Thread exarkun
On 08:58 am, _...@lvh.io wrote: Hi Dustin, This exploit appears to be specific to how received data is written to the already existing buffer, so the _into forms of recv,recvfrom. Even if we assume there's a parallel export for regular recv_into and not just recvfrom_into (which hasn't been

[Twisted-Python] [twisted-web] I/O error with twisted.web.wsgi and Django

2014-02-27 Thread Orestis Markou
Hi all, I am using Twisted Web WSGIResource to host a Django site. Here's the code I use to setup the WSGI resource (other boilerplate skipped) def wsgi_resource(): from django.core.handlers.wsgi import WSGIHandler pool = threadpool.ThreadPool() pool.start() # Allow Ctrl-C to g

Re: [Twisted-Python] Issues stemming from CVE-2014-1912?

2014-02-27 Thread Laurens Van Houtven
Hi Dustin, This exploit appears to be specific to how received data is written to the already existing buffer, so the _into forms of recv,recvfrom. Even if we assume there's a parallel export for regular recv_into and not just recvfrom_into (which hasn't been shown), Twisted never calls either of