mirror of
https://github.com/containers/podman.git
synced 2025-06-11 18:28:41 +08:00

This was inspired by https://github.com/cri-o/cri-o/pull/3934 and much of the logic for it is contained there. However, in brief, a named return called "err" can cause lots of code confusion and encourages using the wrong err variable in defer statements, which can make them work incorrectly. Using a separate name which is not used elsewhere makes it very clear what the defer should be doing. As part of this, remove a large number of named returns that were not used anywhere. Most of them were once needed, but are no longer necessary after previous refactors (but were accidentally retained). Signed-off-by: Matthew Heon <matthew.heon@pm.me>
30 lines
669 B
Go
30 lines
669 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
import "github.com/containers/libpod/v2/libpod/define"
|
|
|
|
func (r *Runtime) setupRootlessNetNS(ctr *Container) error {
|
|
return define.ErrNotImplemented
|
|
}
|
|
|
|
func (r *Runtime) setupNetNS(ctr *Container) error {
|
|
return define.ErrNotImplemented
|
|
}
|
|
|
|
func (r *Runtime) teardownNetNS(ctr *Container) error {
|
|
return define.ErrNotImplemented
|
|
}
|
|
|
|
func (r *Runtime) createNetNS(ctr *Container) error {
|
|
return define.ErrNotImplemented
|
|
}
|
|
|
|
func (c *Container) getContainerNetworkInfo() (*define.InspectNetworkSettings, error) {
|
|
return nil, define.ErrNotImplemented
|
|
}
|
|
|
|
func getCNINetworksDir() (string, error) {
|
|
return "", define.ErrNotImplemented
|
|
}
|