forked from I2P_Developers/i2p.i2p
Router: Shutdown ECIES engine
This commit is contained in:
@ -1490,6 +1490,7 @@ public class Router implements RouterClock.ClockShiftListener {
|
||||
try { _context.inNetMessagePool().shutdown(); } catch (Throwable t) { _log.error("Error shutting down the inbound net pool", t); }
|
||||
try { _context.clientMessagePool().shutdown(); } catch (Throwable t) { _log.error("Error shutting down the client msg pool", t); }
|
||||
try { _context.sessionKeyManager().shutdown(); } catch (Throwable t) { _log.error("Error shutting down the session key manager", t); }
|
||||
try { _context.eciesEngine().shutdown(); } catch (Throwable t) { _log.error("Error shutting down the ECIES engine", t); }
|
||||
try { _context.messageHistory().shutdown(); } catch (Throwable t) { _log.error("Error shutting down the message history logger", t); }
|
||||
// do stat manager last to reduce chance of NPEs in other threads
|
||||
try { _context.statManager().shutdown(); } catch (Throwable t) { _log.error("Error shutting down the stats manager", t); }
|
||||
|
Reference in New Issue
Block a user