-
Notifications
You must be signed in to change notification settings - Fork 18k
net: add KeepAlive field to ListenConfig #31242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This PR (HEAD: 1a7e05e) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/170678 to see it. Tip: You can toggle comments from me using the |
Message from Brad Fitzpatrick: Patch Set 1: RELNOTE=yes Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
Message from Brad Fitzpatrick: Patch Set 1: Run-TryBot+1 Code-Review+1 (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
Message from Gobot Gobot: Patch Set 1: TryBots beginning. Status page: https://farmer.golang.org/try?commit=a451864e Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
Message from Gobot Gobot: Patch Set 1: Build is still in progress... Other builds still in progress; subsequent failure notices suppressed until final report. Consult https://build.golang.org/ to see whether they are new failures. Keep in mind that TryBots currently test exactly your git commit, without rebasing. If your commit's git parent is old, the failure might've already been fixed. Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
Message from Brad Fitzpatrick: Patch Set 1:
Forget to compile it before mailing it out? :) Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
This commit adds a KeepAlive field to ListenConfig and uses it analogously to Dialer.KeepAlive to set TCP KeepAlives per default on Accept()
This PR (HEAD: e9e035d) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/170678 to see it. Tip: You can toggle comments from me using the |
Message from Leo Antunes: Patch Set 1:
Last minute "what could go wrong" refactor. Sorry for the awkward noob noise :/ Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
Message from Leo Antunes: Patch Set 2: (2 comments)
Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
Message from Brad Fitzpatrick: Patch Set 2: Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
Message from Gobot Gobot: Patch Set 2: TryBots beginning. Status page: https://farmer.golang.org/try?commit=e674cc4e Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
Message from Gobot Gobot: Patch Set 2: TryBot-Result+1 TryBots are happy. Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
This commit adds a KeepAlive field to ListenConfig and uses it analogously to Dialer.KeepAlive to set TCP KeepAlives per default on Accept() Fixes #23378 Change-Id: I57eaf9508c979e7f0e2b8c5dd8e8901f6eb27fd6 GitHub-Last-Rev: e9e035d GitHub-Pull-Request: #31242 Reviewed-on: https://go-review.googlesource.com/c/go/+/170678 Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
Message from Brad Fitzpatrick: Patch Set 2: Code-Review+2 Please don’t reply on this GitHub thread. Visit golang.org/cl/170678. |
This PR is being closed because golang.org/cl/170678 has been merged. |
This commit adds a KeepAlive field to ListenConfig and uses it
analogously to Dialer.KeepAlive to set TCP KeepAlives per default on
Accept()
Fixes #23378