mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 07:16:38 +00:00
22 lines
745 B
Go
22 lines
745 B
Go
//go:build !android
|
|
|
|
package server
|
|
|
|
import (
|
|
"github.com/netbirdio/netbird/client/firewall/iptables"
|
|
"github.com/netbirdio/netbird/client/firewall/nftables"
|
|
"github.com/netbirdio/netbird/client/internal/dns"
|
|
"github.com/netbirdio/netbird/client/internal/routemanager/systemops"
|
|
"github.com/netbirdio/netbird/client/internal/statemanager"
|
|
"github.com/netbirdio/netbird/client/ssh/config"
|
|
)
|
|
|
|
// registerStates registers all states that need crash recovery cleanup.
|
|
func registerStates(mgr *statemanager.Manager) {
|
|
mgr.RegisterState(&dns.ShutdownState{})
|
|
mgr.RegisterState(&systemops.ShutdownState{})
|
|
mgr.RegisterState(&nftables.ShutdownState{})
|
|
mgr.RegisterState(&iptables.ShutdownState{})
|
|
mgr.RegisterState(&config.ShutdownState{})
|
|
}
|