| 116 | } |
| 117 | |
| 118 | void RemoteHost::CheckStatus() |
| 119 | { |
| 120 | // special case - this is the local context |
| 121 | if(m_hostname == "localhost") |
| 122 | { |
| 123 | QMutexLocker autolock(&m_data->mutex); |
| 124 | m_data->m_serverRunning = m_data->m_versionMismatch = m_data->m_busy = false; |
| 125 | m_data->m_versionError.clear(); |
| 126 | return; |
| 127 | } |
| 128 | |
| 129 | UpdateStatus(RENDERDOC_CheckRemoteServerConnection(m_hostname)); |
| 130 | } |
| 131 | |
| 132 | ResultDetails RemoteHost::Connect(IRemoteServer **server) |
| 133 | { |
no test coverage detected