2021-09-09 20:25:25 +08:00
|
|
|
//go:build !linux && !freebsd
|
2021-01-03 08:05:52 +08:00
|
|
|
|
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
|
|
|
func newUnixListener(path string, gid int) (net.Listener, string, error) {
|
|
|
|
return nil, "", errors.New("unix sockets require Linux or FreeBSD")
|
|
|
|
}
|