mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-22 06:46:50 +00:00
14 lines
229 B
Go
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")
|
|
}
|