----------------------------------------------------------------------------- Send a NIF frame from the Controller to the Node -----------------------------------------------------------------------------
| 4315 | // Send a NIF frame from the Controller to the Node |
| 4316 | //----------------------------------------------------------------------------- |
| 4317 | bool Manager::SendNodeInformation |
| 4318 | ( |
| 4319 | uint32 const _homeId, |
| 4320 | uint8 const _nodeId |
| 4321 | ) |
| 4322 | { |
| 4323 | if (Driver *driver = GetDriver( _homeId ) ) { |
| 4324 | LockGuard LG(driver->m_nodeMutex); |
| 4325 | return driver->BeginControllerCommand( |
| 4326 | Driver::ControllerCommand_SendNodeInformation, |
| 4327 | NULL, NULL, true, _nodeId, 0); |
| 4328 | } |
| 4329 | return false; |
| 4330 | } |
| 4331 | |
| 4332 | //----------------------------------------------------------------------------- |
| 4333 | // <Manager::CreateNewPrimary> |
nothing calls this directly
no test coverage detected