This commit is contained in:
jdl
2026-06-07 09:33:21 +02:00
parent 199f774ed3
commit cad200b9cc
16 changed files with 692 additions and 63 deletions

View File

@@ -68,7 +68,7 @@ type App struct {
selfV6 netip.AddrPort
// Monotonically increasing ID for outbound pings (client role only)
nextPingID int64
nextPingID int64 // TODO: Remove
// Event channels fed by background goroutines
hubAddCh <-chan HubPeer
@@ -104,7 +104,6 @@ func (a *App) Run() error {
}
}
func (a *App) onShutdown() error {
return wginterface.Delete(a.dev.Name())
}