Re: [Twisted-Python] doWrite on twisted.internet.tcp.Port

2020-09-30 Thread chris
. -Chris From: Twisted-Python On Behalf Of ch...@cmsconstruct.com Sent: Saturday, September 12, 2020 12:07 PM To: 'Twisted general discussion' Subject: Re: [Twisted-Python] doWrite on twisted.internet.tcp.Port Hi Jean-Paul, Thank you very much for the detailed answe

Re: [Twisted-Python] doWrite on twisted.internet.tcp.Port

2020-09-16 Thread Barry Scott
On Tuesday, 15 September 2020 19:37:41 BST Glyph wrote: > > On Sep 15, 2020, at 10:05 AM, Barry Scott > > wrote: > > > > We do this so that we can open priv'ed ports that the children will share. > > We drop priv's after the priv'ed ports are opened. > > A better way to do this might be to use

Re: [Twisted-Python] doWrite on twisted.internet.tcp.Port

2020-09-15 Thread Barry Scott
On Friday, 11 September 2020 19:28:13 BST Jean-Paul Calderone wrote: > On Fri, Sep 11, 2020 at 1:34 PM wrote: > > > Hey guys, > > > > > > > > Last year I hit a condition discussed in this ticket: > > https://twistedmatrix.com/trac/ticket/4759 for doWrite called on a > > twisted.internet.tcp.Port.

Re: [Twisted-Python] doWrite on twisted.internet.tcp.Port

2020-09-15 Thread Glyph
> On Sep 15, 2020, at 10:05 AM, Barry Scott wrote: > > We do this so that we can open priv'ed ports that the children will share. > We drop priv's after the priv'ed ports are opened. A better way to do this might be to use something like the systemd activation endpoint, so you never need privil

Re: [Twisted-Python] doWrite on twisted.internet.tcp.Port

2020-09-12 Thread chris
with, “knowing is half the battle.” -Chris From: Twisted-Python On Behalf Of Jean-Paul Calderone Sent: Friday, September 11, 2020 1:28 PM To: Twisted general discussion Subject: Re: [Twisted-Python] doWrite on twisted.internet.tcp.Port On Fri, Sep 11, 2020 at 1:34 PM mailto:ch

Re: [Twisted-Python] doWrite on twisted.internet.tcp.Port

2020-09-11 Thread Jean-Paul Calderone
On Fri, Sep 11, 2020 at 1:34 PM wrote: > Hey guys, > > > > Last year I hit a condition discussed in this ticket: > https://twistedmatrix.com/trac/ticket/4759 for doWrite called on a > twisted.internet.tcp.Port. > > > > I ignored it at the time since it was just on Linux, and my main platform > wa

[Twisted-Python] doWrite on twisted.internet.tcp.Port

2020-09-11 Thread chris
Hey guys, Last year I hit a condition discussed in this ticket: https://twistedmatrix.com/trac/ticket/4759 for doWrite called on a twisted.internet.tcp.Port. I ignored it at the time since it was just on Linux, and my main platform was Windows. Now I'm coming back to it. I'll add contex