mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 20:04:52 +01:00
daf449b5f2
Fixes #4750 Co-authored-by: Ivan Andreev <ivandeex@gmail.com>
13 lines
218 B
Go
13 lines
218 B
Go
// +build !linux,!freebsd
|
|
|
|
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")
|
|
}
|