* Message Registry: Clear pending messages at restart / shutdown

* OCMOSJ: Clear caches at restart
  * UPnP:
    - Fix device rediscovery and port opening after restart
This commit is contained in:
zzz
2011-07-10 15:04:42 +00:00
parent 42acdc314a
commit 3455d3f943
9 changed files with 83 additions and 8 deletions

View File

@@ -914,6 +914,12 @@ public class ControlPoint implements HTTPRequestListener
setRenewSubscriber(null);
}
// I2P so we will re-notify on restart
DeviceList dl = getDeviceList();
for (int i = 0; i < dl.size(); i++) {
removeDevice(dl.getDevice(i));
}
return true;
}