| 612 | } |
| 613 | |
| 614 | void CubicSDR::addRemote(const std::string& remoteAddr) { |
| 615 | SDREnumerator::addRemote(remoteAddr); |
| 616 | devicesReady.store(false); |
| 617 | t_SDREnum = new std::thread(&SDREnumerator::threadMain, sdrEnum); |
| 618 | } |
| 619 | |
| 620 | void CubicSDR::removeRemote(const std::string& remoteAddr) { |
| 621 | SDREnumerator::removeRemote(remoteAddr); |
nothing calls this directly
no outgoing calls
no test coverage detected