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:
Sebastiaan van Stijn
2026-08-27 17:06:54 +02:00
parent 45f589590b
commit b17df8fea3
5 changed files with 14 additions and 5 deletions
@@ -1,4 +1,4 @@
//go:build !linux && !windows
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
package sockets
+9
View File
@@ -0,0 +1,9 @@
//go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd && !windows
package sockets
import "syscall"
func maxListenerBacklog() int {
return syscall.SOMAXCONN
}