mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
0d12e37c96
* Include EXC0014 and fix issues. * Include EXC0012 and fix issues. Signed-off-by: Fabian Kammel <fk@edgeless.systems> Co-authored-by: Otto Bittner <cobittner@posteo.net>
44 lines
875 B
Go
44 lines
875 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package virtwrapper
|
|
|
|
import "libvirt.org/go/libvirt"
|
|
|
|
// Connect wraps a libvirt connection.
|
|
type Connect struct {
|
|
Conn *libvirt.Connect
|
|
}
|
|
|
|
// LookupNetworkByName looks up a network by name.
|
|
func (c *Connect) LookupNetworkByName(name string) (*Network, error) {
|
|
net, err := c.Conn.LookupNetworkByName(name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Network{Net: net}, nil
|
|
}
|
|
|
|
// Network wraps a libvirt network.
|
|
type Network struct {
|
|
Net virNetwork
|
|
}
|
|
|
|
// GetDHCPLeases returns the underlying DHCP leases.
|
|
func (n *Network) GetDHCPLeases() ([]libvirt.NetworkDHCPLease, error) {
|
|
return n.Net.GetDHCPLeases()
|
|
}
|
|
|
|
// Free the network resource.
|
|
func (n *Network) Free() {
|
|
_ = n.Net.Free()
|
|
}
|
|
|
|
type virNetwork interface {
|
|
GetDHCPLeases() ([]libvirt.NetworkDHCPLease, error)
|
|
Free() error
|
|
}
|