Files
podman/vendor/github.com/docker/go-connections/sockets/sockets_unix.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

19 lines
297 B
Go

//go:build !windows
package sockets
import (
"net"
"net/http"
"syscall"
"time"
)
func configureNpipeTransport(tr *http.Transport, proto, addr string) error {
return ErrProtocolNotAvailable
}
func dialPipe(_ string, _ time.Duration) (net.Conn, error) {
return nil, syscall.EAFNOSUPPORT
}