mirror of
https://github.com/docker/cli.git
synced 2026-09-27 09:46:01 -04:00
vendor: github.com/docker/go-connections v0.8.1
fixes support for BSD variants Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Generated
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
//go:build !linux && !windows
|
||||
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
|
||||
|
||||
package sockets
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
//go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd && !windows
|
||||
|
||||
package sockets
|
||||
|
||||
import "syscall"
|
||||
|
||||
func maxListenerBacklog() int {
|
||||
return syscall.SOMAXCONN
|
||||
}
|
||||
Reference in New Issue
Block a user