Yggdrasil demo: Add Stop functions
parent
6c4eabbe92
commit
00e0df7c87
|
@ -180,3 +180,10 @@ func (m *DendriteMonolith) Start(staticPeer string, enableMulticast bool) {
|
||||||
logger.Fatal(httpServer.Serve(m.listener))
|
logger.Fatal(httpServer.Serve(m.listener))
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *DendriteMonolith) Stop() {
|
||||||
|
if err := m.listener.Close(); err != nil {
|
||||||
|
logrus.Warn("Error stopping listener:", err)
|
||||||
|
}
|
||||||
|
m.YggdrasilNode.Stop()
|
||||||
|
}
|
||||||
|
|
|
@ -156,6 +156,13 @@ func Setup(instanceName, instancePeer, storageDirectory string, enableMulticast
|
||||||
return n, nil
|
return n, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (n *Node) Stop() {
|
||||||
|
if err := n.multicast.Stop(); err != nil {
|
||||||
|
n.log.Println("Error stopping multicast:", err)
|
||||||
|
}
|
||||||
|
n.core.Stop()
|
||||||
|
}
|
||||||
|
|
||||||
func (n *Node) DerivedServerName() string {
|
func (n *Node) DerivedServerName() string {
|
||||||
return hex.EncodeToString(n.SigningPublicKey())
|
return hex.EncodeToString(n.SigningPublicKey())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue