Files
podman/vendor/github.com/docker/go-connections/sockets/unix_socket_windows.go
Paul Holzinger e76b08394e vendor: update c/{common, image, storage} to latest main
Just to make sure everything still works ahead of monorepo move.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-08-26 10:02:35 +02:00

8 lines
119 B
Go

package sockets
import "net"
func listenUnix(path string) (net.Listener, error) {
return net.Listen("unix", path)
}