Shutdowns fixed for iOS

This commit is contained in:
Neil Alexander 2021-02-16 15:25:33 +00:00
parent 31d8f4a147
commit d9aeb293e2
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -357,6 +357,10 @@ func (m *DendriteMonolith) Start() {
} }
func (m *DendriteMonolith) Stop() { func (m *DendriteMonolith) Stop() {
_ = m.listener.Close()
m.PineconeMulticast.Stop()
_ = m.PineconeQUIC.Close()
_ = m.PineconeRouter.Close()
m.processContext.ShutdownDendrite() m.processContext.ShutdownDendrite()
} }