vendor: github.com/docker/docker v26.0.0-rc1

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
Paweł Gronowski
2024-03-01 12:29:55 +01:00
parent 04f0fc5871
commit 9bce433154
30 changed files with 172 additions and 346 deletions
+3 -2
View File
@@ -1,4 +1,4 @@
//go:build !darwin
//go:build !darwin && !openbsd
package socket
@@ -15,5 +15,6 @@ func listen(socketname string) (*net.UnixListener, error) {
func onAccept(conn *net.UnixConn, listener *net.UnixListener) {
// do nothing
// while on darwin we would unlink here; on non-darwin the socket is abstract and not present on the filesystem
// while on darwin and OpenBSD we would unlink here;
// on non-darwin the socket is abstract and not present on the filesystem
}