Re: [go-nuts] Remind me, please, about "taking over" a socket

2019-05-30 Thread Bakul Shah
On Thu, 30 May 2019 20:10:30 -0700 Bakul Shah wrote: > > You will have to use low level code like Socket(), Bind() etc. You can't > use e.g. Dial("tcp", "192.168.1.1:smtp") This should've been edited out since we are talking about Listen. -- You received this message because you are subscribed

Re: [go-nuts] Remind me, please, about "taking over" a socket

2019-05-30 Thread Bakul Shah
On Thu, 30 May 2019 17:40:55 -0700 David Collier-Brown wrote: > > My leaky brain has lost an old technique... > > Once upon a time, I would send an old copy of a program a SIGHUP, and it > would shut down a socket listening on, for example, port 25 (SMTP). A newer > release of the program

Re: [go-nuts] Remind me, please, about "taking over" a socket

2019-05-30 Thread Skip Tavakkolian
Do you mean like tcp half-close? On Thu, May 30, 2019, 5:40 PM David Collier-Brown wrote: > My leaky brain has lost an old technique... > > Once upon a time, I would send an old copy of a program a SIGHUP, and it > would shut down a socket listening on, for example, port 25 (SMTP). A newer >

[go-nuts] Remind me, please, about "taking over" a socket

2019-05-30 Thread David Collier-Brown
My leaky brain has lost an old technique... Once upon a time, I would send an old copy of a program a SIGHUP, and it would shut down a socket listening on, for example, port 25 (SMTP). A newer release of the program would succeeding in binding to port 25, taking over any new connection