go-libvirt
go-libvirt copied to clipboard
Package libvirt provides a pure Go interface for interacting with Libvirt. Apache 2.0 Licensed.
Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.19.0 to 0.20.0. Commits 11c692e gopls/internal/test/marker/testdata: skip hover size tests on 32-bit arm fc660e5 go.mod: update golang.org/x dependencies 6590f47 internal/gcimporter: renable tests of issue50259.go f1d5252 gopls/internal/golang: Hover:...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.21.0 to 0.22.0. Commits d042a39 go.mod: update golang.org/x dependencies b92bf94 ssh: respect MaxAuthTries also for "none" auth attempts 6f79b5a ssh: add server side multi-step authentication 8d0d405 x/crypto/chacha20:...
Fixes #191 There's a deadlock scenario if the stream is being shutdown while still receiving events, which can occur if using LifecycleEvents and cancelling the context. Example reproduction case ```...
Some methods, e.g. `NetworkGetDhcpLeases` have a `NeedResults` parameter of type `int32`. What is the meaning of this parameter, is this a flag indicating that we need a result list, so...
Currently the socket is defined as a variable here https://github.com/digitalocean/go-libvirt/blob/15feff002086ca5276717d866e19ebf9e082f343/socket/dialers/local.go#L10 so it only works with **Monolithic daemon** mode (libvirtd) and not the **Modular daemons** mode (virtqemud, virtstoraged,...). Ref: https://libvirt.org/daemons.html
Hello, is it possible to implement https://libvirt.org/html/libvirt-libvirt-qemu.html api ? Regards, Nicolas
Chances are that this could also time out if you're lucky and run it on your local workstation with `go test -race` but I've only seen this crop up on...
There's a deadlock scenario if the stream is being shutdown while still receiving events, which can occur if using LifecycleEvents and cancelling the context. Example reproduction case ``` func TestStreamShutdown(t...
i want to have event in my ap when conection to libvirt daemon closed (client disconnected), as i see libvirt sources and this package i can use ConnectRegisterCloseCallback But how...
In official api document, there are [DomainMigrate](https://libvirt.org/html/libvirt-libvirt-domain.html#virDomainMigrate3) operations. However, in this repository they are missing. There are only some basic operations such as DomainMigratePrepare3, DomainMigratePerform3... Is there anyone can help...