mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
34 lines
841 B
Go
34 lines
841 B
Go
|
//go:build !cgo
|
||
|
|
||
|
/*
|
||
|
Copyright (c) Edgeless Systems GmbH
|
||
|
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
package virtwrapper
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
// Connect wraps a libvirt connection.
|
||
|
type Connect struct{}
|
||
|
|
||
|
// LookupNetworkByName looks up a network by name.
|
||
|
// This function errors if CGO is disabled.
|
||
|
func (c *Connect) LookupNetworkByName(_ string) (*Network, error) {
|
||
|
return nil, errors.New("using virtwrapper requires building with CGO")
|
||
|
}
|
||
|
|
||
|
// Network wraps a libvirt network.
|
||
|
type Network struct{}
|
||
|
|
||
|
// GetDHCPLeases returns the underlying DHCP leases.
|
||
|
// This function errors if CGO is disabled.
|
||
|
func (n *Network) GetDHCPLeases() ([]NetworkDHCPLease, error) {
|
||
|
return nil, errors.New("using virtwrapper requires building with CGO")
|
||
|
}
|
||
|
|
||
|
// Free the network resource.
|
||
|
// This function does nothing if CGO is disabled.
|
||
|
func (n *Network) Free() {}
|