mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-06 01:08:03 +00:00
13 lines
211 B
Go
13 lines
211 B
Go
// +build !linux
|
|
|
|
package docker
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
)
|
|
|
|
func namespaceIPAddresses(processID int) ([]*net.IPNet, error) {
|
|
return nil, errors.New("namespaceIPAddresses not implemented on this platform")
|
|
}
|