1
0
mirror of https://github.com/lxc/incus.git synced 2026-02-05 09:46:19 +01:00
Files
incus/cmd/incus-agent/daemon.go
Marc Olivier Bergeron 656392fa5d Attempt to make the Incus Agent on Windows better integrated.
Signed-off-by: Marc Olivier Bergeron <mbergeron28@proton.me>
2025-12-12 00:02:14 -05:00

39 lines
877 B
Go

package main
import (
"sync"
"github.com/lxc/incus/v6/internal/server/events"
)
// A Daemon can respond to requests from a shared client.
type Daemon struct {
// Event servers
events *events.Server
secretsLocation string
// ContextID and port of the host socket server.
serverCID uint32
serverPort uint32
serverCertificate string
// The channel which is used to indicate that the agent was able to connect to the host.
chConnected chan struct{}
DevIncusRunning bool
DevIncusMu sync.Mutex
DevIncusEnabled bool
}
// newDaemon returns a new Daemon object with the given configuration.
func newDaemon(debug, verbose bool, secretsLocation string) *Daemon {
hostEvents := events.NewServer(debug, verbose, nil)
return &Daemon{
secretsLocation: secretsLocation,
events: hostEvents,
chConnected: make(chan struct{}),
}
}