Re: [go-nuts] no way to pause `Listen` on net connections

2023-07-24 Thread David N
Yup, this makes sense and should work, but I'm still surprised this can't be entirely done in Golang. On Mon, Jul 24, 2023 at 10:49 AM Jan Mercl <0xj...@gmail.com> wrote: > On Mon, Jul 24, 2023 at 9:14 AM David N wrote: > > On Linux you may try fiddling with ip

Re: [go-nuts] no way to pause `Listen` on net connections

2023-07-24 Thread David N
ite a sample program on play.golang.org, > which does roughly want you want except for pause/resume, and post a link > here and we can modify it for pause/resume. > > On Jul 21, 2023, at 10:47 PM, David N wrote: > > I've posted this question on stackoverflow > <ht

Re: [go-nuts] no way to pause `Listen` on net connections

2023-07-24 Thread David N
simply > accept the connection request then close the connection (or do whatever > else makes sense). I read your StackOverflow question and am still > perplexed what problem you are trying to solve. > > On Sun, Jul 23, 2023 at 10:11 PM David N wrote: > >> I've posted

[go-nuts] no way to pause `Listen` on net connections

2023-07-23 Thread David N
I've posted this question on stackoverflow , discussed it with some members of the golang community, and I was encouraged to post here. Problem: I have a secure application and I want