Files
weave-scope/probe/docker/network_others.go
Bryan Boreham bcdf2caa61 Make lint happy
Mostly new-style Go build directives

Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
2022-03-14 18:52:10 +00:00

14 lines
229 B
Go

//go:build !linux
// +build !linux
package docker
import (
"errors"
"net"
)
func namespaceIPAddresses(processID int) ([]*net.IPNet, error) {
return nil, errors.New("namespaceIPAddresses not implemented on this platform")
}