----------------------------------------------------------------------------- Ask a Node to delete all its Return Routes -----------------------------------------------------------------------------
| 4296 | // Ask a Node to delete all its Return Routes |
| 4297 | //----------------------------------------------------------------------------- |
| 4298 | bool Manager::DeleteAllReturnRoutes |
| 4299 | ( |
| 4300 | uint32 const _homeId, |
| 4301 | uint8 const _nodeId |
| 4302 | ) |
| 4303 | { |
| 4304 | if (Driver *driver = GetDriver( _homeId ) ) { |
| 4305 | LockGuard LG(driver->m_nodeMutex); |
| 4306 | return driver->BeginControllerCommand( |
| 4307 | Driver::ControllerCommand_DeleteAllReturnRoutes, |
| 4308 | NULL, NULL, true, _nodeId, 0); |
| 4309 | } |
| 4310 | return false; |
| 4311 | } |
| 4312 | |
| 4313 | //----------------------------------------------------------------------------- |
| 4314 | // <Manager::SendNodeInformation> |
nothing calls this directly
no test coverage detected