| 104 | } |
| 105 | |
| 106 | void |
| 107 | SecurityRegistry::release() |
| 108 | { |
| 109 | DBG_ENTRY_LVL("SecurityRegistry", "release", 6); |
| 110 | GuardType guard(lock_); |
| 111 | |
| 112 | for (InstMap::iterator iter = registered_plugins_.begin(); iter != registered_plugins_.end(); ++iter) { |
| 113 | iter->second->shutdown(); |
| 114 | } |
| 115 | registered_plugins_.clear(); |
| 116 | config_map_.clear(); |
| 117 | } |
| 118 | |
| 119 | void |
| 120 | SecurityRegistry::register_plugin(const OPENDDS_STRING& plugin_name, |
no test coverage detected