| 193 | } |
| 194 | |
| 195 | void CServerBrowser::Con_RemoveExcludedType(IConsole::IResult *pResult, void *pUserData) |
| 196 | { |
| 197 | CServerBrowser *pThis = static_cast<CServerBrowser *>(pUserData); |
| 198 | const char *pCommunityId = pResult->GetString(0); |
| 199 | const char *pTypeName = pResult->GetString(1); |
| 200 | if(!pThis->ValidateCommunityId(pCommunityId) || !pThis->ValidateTypeName(pTypeName)) |
| 201 | return; |
| 202 | pThis->TypesFilter().Remove(pCommunityId, pTypeName); |
| 203 | } |
| 204 | |
| 205 | void CServerBrowser::Con_LeakIpAddress(IConsole::IResult *pResult, void *pUserData) |
| 206 | { |
nothing calls this directly
no test coverage detected