| 139 | } |
| 140 | |
| 141 | bool CChooseMaster::GetBestUrl(const char **ppBestUrl) const |
| 142 | { |
| 143 | int Index = GetBestIndex(); |
| 144 | if(Index < 0) |
| 145 | { |
| 146 | *ppBestUrl = nullptr; |
| 147 | return true; |
| 148 | } |
| 149 | *ppBestUrl = m_pData->m_aaUrls[Index]; |
| 150 | return false; |
| 151 | } |
| 152 | |
| 153 | void CChooseMaster::Reset() |
| 154 | { |
no outgoing calls
no test coverage detected