diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-11 19:12:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-11 19:12:43 +0100 |
commit | 375ff223f430301edf25ef5a5f03a1ae1e029bef (patch) | |
tree | 96993f98fa27d39a93589a93179e7c914746b876 /libpod/network/internal/util/interface.go | |
parent | d5b411c484f9e45c71ad3552b796bd3343ec7a0c (diff) | |
parent | 3af19917a1666fc3f29d98f7f0b937eb488f706c (diff) | |
download | podman-375ff223f430301edf25ef5a5f03a1ae1e029bef.tar.gz podman-375ff223f430301edf25ef5a5f03a1ae1e029bef.tar.bz2 podman-375ff223f430301edf25ef5a5f03a1ae1e029bef.zip |
Merge pull request #12131 from Luap99/netavark-interface
Netavark interface
Diffstat (limited to 'libpod/network/internal/util/interface.go')
-rw-r--r-- | libpod/network/internal/util/interface.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libpod/network/internal/util/interface.go b/libpod/network/internal/util/interface.go new file mode 100644 index 000000000..4b01a09b8 --- /dev/null +++ b/libpod/network/internal/util/interface.go @@ -0,0 +1,19 @@ +package util + +import "github.com/containers/podman/v3/libpod/network/types" + +// This is a helper package to allow code sharing between the different +// network interfaces. + +// NetUtil is a helper interface which all network interfaces should implement to allow easy code sharing +type NetUtil interface { + // ForEach eaxecutes the given function for each network + ForEach(func(types.Network)) + // Len returns the number of networks + Len() int + // DefaultInterfaceName return the default interface name, this will be suffixed by a number + DefaultInterfaceName() string + // Network returns the network with the given name or ID. + // It returns an error if the network is not found + Network(nameOrID string) (*types.Network, error) +} |