mirror of
https://github.com/docker/docs.git
synced 2026-03-30 07:48:52 +07:00
14 lines
230 B
Go
14 lines
230 B
Go
// +build windows
|
|
|
|
package api
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"fmt"
|
|
"net"
|
|
)
|
|
|
|
func newUnixListener(addr string, tlsConfig *tls.Config) (net.Listener, error) {
|
|
return nil, fmt.Errorf("Windows platform does not support a unix socket")
|
|
}
|