mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-06 16:25:21 -04:00
metadata-api: support dnsmasq (#3115)
This commit is contained in:
parent
37e46b98c2
commit
21c30ebb76
18 changed files with 304 additions and 270 deletions
24
hack/qemu-metadata-api/dhcp/virtwrapper/virtwrapper_cross.go
Normal file
24
hack/qemu-metadata-api/dhcp/virtwrapper/virtwrapper_cross.go
Normal file
|
@ -0,0 +1,24 @@
|
|||
//go:build !cgo
|
||||
|
||||
/*
|
||||
Copyright (c) Edgeless Systems GmbH
|
||||
|
||||
SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
package virtwrapper
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
||||
"github.com/edgelesssys/constellation/v2/hack/qemu-metadata-api/dhcp"
|
||||
)
|
||||
|
||||
// Connect wraps a libvirt connection.
|
||||
type Connect struct{}
|
||||
|
||||
// GetDHCPLeases returns the underlying DHCP leases.
|
||||
// This function errors if CGO is disabled.
|
||||
func (n *Connect) GetDHCPLeases() ([]dhcp.NetworkDHCPLease, error) {
|
||||
return nil, errors.New("using virtwrapper requires building with CGO")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue