mirror of
https://github.com/containers/skopeo.git
synced 2025-09-24 03:17:17 +00:00
Pull in schema1 and docker-daemon
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
15
vendor/github.com/docker/go-connections/sockets/sockets_unix.go
generated
vendored
Normal file
15
vendor/github.com/docker/go-connections/sockets/sockets_unix.go
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
// +build !windows
|
||||
|
||||
package sockets
|
||||
|
||||
import (
|
||||
"net"
|
||||
"syscall"
|
||||
"time"
|
||||
)
|
||||
|
||||
// DialPipe connects to a Windows named pipe.
|
||||
// This is not supported on other OSes.
|
||||
func DialPipe(_ string, _ time.Duration) (net.Conn, error) {
|
||||
return nil, syscall.EAFNOSUPPORT
|
||||
}
|
Reference in New Issue
Block a user