mirror of
https://github.com/rancher/os.git
synced 2025-09-02 15:24:32 +00:00
Bump libcompose and its dependencies
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