github.com/pwn-term/docker@v0.0.0-20210616085119-6e977cce2565/libnetwork/osl/namespace_unsupported.go (about) 1 // +build !linux,!windows,!freebsd 2 3 package osl 4 5 // GC triggers garbage collection of namespace path right away 6 // and waits for it. 7 func GC() { 8 } 9 10 // GetSandboxForExternalKey returns sandbox object for the supplied path 11 func GetSandboxForExternalKey(path string, key string) (Sandbox, error) { 12 return nil, nil 13 } 14 15 // SetBasePath sets the base url prefix for the ns path 16 func SetBasePath(path string) { 17 }