mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-22 15:20:30 +00:00
Tidy up the terminate path a bit
This commit is contained in:
parent
618d46a7b3
commit
4804ce39af
@ -242,16 +242,9 @@ func main() {
|
|||||||
r := make(chan os.Signal, 1)
|
r := make(chan os.Signal, 1)
|
||||||
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
||||||
signal.Notify(r, os.Interrupt, syscall.SIGHUP)
|
signal.Notify(r, os.Interrupt, syscall.SIGHUP)
|
||||||
// Define what happens when we want to stop Yggdrasil.
|
|
||||||
terminate := func() {
|
|
||||||
n.core.Stop()
|
|
||||||
n.admin.Stop()
|
|
||||||
n.multicast.Stop()
|
|
||||||
n.tuntap.Stop()
|
|
||||||
os.Exit(0)
|
|
||||||
}
|
|
||||||
// Capture the service being stopped on Windows.
|
// Capture the service being stopped on Windows.
|
||||||
minwinsvc.SetOnExit(terminate)
|
minwinsvc.SetOnExit(n.shutdown)
|
||||||
|
defer n.shutdown()
|
||||||
// Wait for the terminate/interrupt signal. Once a signal is received, the
|
// Wait for the terminate/interrupt signal. Once a signal is received, the
|
||||||
// deferred Stop function above will run which will shut down TUN/TAP.
|
// deferred Stop function above will run which will shut down TUN/TAP.
|
||||||
for {
|
for {
|
||||||
@ -270,7 +263,14 @@ func main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
exit:
|
exit:
|
||||||
terminate()
|
}
|
||||||
|
|
||||||
|
func (n *node) shutdown() {
|
||||||
|
n.core.Stop()
|
||||||
|
n.admin.Stop()
|
||||||
|
n.multicast.Stop()
|
||||||
|
n.tuntap.Stop()
|
||||||
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (n *node) sessionFirewall(pubkey *crypto.BoxPubKey, initiator bool) bool {
|
func (n *node) sessionFirewall(pubkey *crypto.BoxPubKey, initiator bool) bool {
|
||||||
|
Loading…
Reference in New Issue
Block a user