Re: [Twisted-Python] SMTP Client Blocking Connects

2010-07-26 Thread exarkun
On 19 Jul, 05:19 pm, jasonjwwilli...@gmail.com wrote: >Hey Glyph, > >Sorry it took me a week...thanks for looking at it. This is an >approximation of just the SMTP logic that I thought was blocking. It >appears not to block, but has an issue executing the other deferreds. > >http://gist.github.com/

Re: [Twisted-Python] SMTP Client Blocking Connects

2010-07-19 Thread Glyph Lefkowitz
On Jul 19, 2010, at 1:19 PM, Jason J. W. Williams wrote: > Sorry it took me a week...thanks for looking at it. This is an > approximation of just the SMTP logic that I thought was blocking. It > appears not to block, but has an issue executing the other deferreds. > > http://gist.github.com/4816

Re: [Twisted-Python] SMTP Client Blocking Connects

2010-07-19 Thread Jason J. W. Williams
Hey Glyph, Sorry it took me a week...thanks for looking at it. This is an approximation of just the SMTP logic that I thought was blocking. It appears not to block, but has an issue executing the other deferreds. http://gist.github.com/481684 -J On Mon, Jul 12, 2010 at 6:53 PM, Glyph Lefkowitz

Re: [Twisted-Python] SMTP Client Blocking Connects

2010-07-18 Thread exarkun
On 08:58 am, konr...@smelkovs.com wrote: >Not unless it drops it on the floor as opposed to reject with icmp No. It should never block. Jean-Paul >-- >Konrads Smelkovs >Applied IT sorcery. > > >2010/7/14 Jaros2aw Fedewicz >> >>On 14 CBC8CF. 2010, at 17:18, Konrads Smelkovs wrote: >> >> > Maybe

Re: [Twisted-Python] SMTP Client Blocking Connects

2010-07-18 Thread Konrads Smelkovs
Not unless it drops it on the floor as opposed to reject with icmp -- Konrads Smelkovs Applied IT sorcery. 2010/7/14 Jarosław Fedewicz > > On 14 лип. 2010, at 17:18, Konrads Smelkovs wrote: > > > Maybe there is a firewall that limits incoming connections? > > -- > > Konrads Smelkovs > > Applied

Re: [Twisted-Python] SMTP Client Blocking Connects

2010-07-14 Thread Jarosław Fedewicz
On 14 лип. 2010, at 17:18, Konrads Smelkovs wrote: > Maybe there is a firewall that limits incoming connections? > -- > Konrads Smelkovs > Applied IT sorcery. Even if it drops packets, it should not block. It should return immediately with a Deferred, which will eventually fail. -- Engineer:

Re: [Twisted-Python] SMTP Client Blocking Connects

2010-07-14 Thread Konrads Smelkovs
Maybe there is a firewall that limits incoming connections? -- Konrads Smelkovs Applied IT sorcery. On Tue, Jul 13, 2010 at 3:51 AM, Jason J. W. Williams < jasonjwwilli...@gmail.com> wrote: > Hi Guys, > > Are TCP connects in Twisted usually blocking? Noticing a behavior when > I've got several s

Re: [Twisted-Python] SMTP Client Blocking Connects

2010-07-13 Thread Jason J. W. Williams
Hey Glyph, Thanks for responding so fast. Lemme code up a simple test that replicates what the code is doing and see if I can replicate it that way. -J On Mon, Jul 12, 2010 at 6:53 PM, Glyph Lefkowitz wrote: > > On Jul 12, 2010, at 8:51 PM, Jason J. W. Williams wrote: > > Are TCP connects in Tw

Re: [Twisted-Python] SMTP Client Blocking Connects

2010-07-12 Thread Glyph Lefkowitz
On Jul 12, 2010, at 8:51 PM, Jason J. W. Williams wrote: > Are TCP connects in Twisted usually blocking? Noticing a behavior when > I've got several simultaneous SMTP client objects operating, where > when one of them hits a server that times out on the connect...the > program blocks until the co

[Twisted-Python] SMTP Client Blocking Connects

2010-07-12 Thread Jason J. W. Williams
Hi Guys, Are TCP connects in Twisted usually blocking? Noticing a behavior when I've got several simultaneous SMTP client objects operating, where when one of them hits a server that times out on the connect...the program blocks until the connect times out. Everything else is working async/non-blo