----------------------------------------------------------------------------- Send a NIF frame from the Controller to the Node -----------------------------------------------------------------------------
| 4352 | // Send a NIF frame from the Controller to the Node |
| 4353 | //----------------------------------------------------------------------------- |
| 4354 | bool Manager::ReceiveConfiguration |
| 4355 | ( |
| 4356 | uint32 const _homeId |
| 4357 | ) |
| 4358 | { |
| 4359 | if (Driver *driver = GetDriver( _homeId ) ) { |
| 4360 | LockGuard LG(driver->m_nodeMutex); |
| 4361 | return driver->BeginControllerCommand( |
| 4362 | Driver::ControllerCommand_ReceiveConfiguration, |
| 4363 | NULL, NULL, true, 0, 0); |
| 4364 | } |
| 4365 | return false; |
| 4366 | } |
| 4367 | |
| 4368 | //----------------------------------------------------------------------------- |
| 4369 | // <Manager::ReplaceFailedNode> |
nothing calls this directly
no test coverage detected