The whole purpose of HttpFilteringEngine::RemoveUriMethodAndService(...) is to get the host name from a full URL for the purpose of determining if a request is third-party or not. It doesn't perform this function, as it presently does not trim characters beyond the hostname. In fact, due to #51 it doesn't work at all right now. Corrected and renamed to HttpFilteringEngine::ExtractHostNameFromUrl(...).
The whole purpose of
HttpFilteringEngine::RemoveUriMethodAndService(...)
is to get the host name from a full URL for the purpose of determining if a request is third-party or not. It doesn't perform this function, as it presently does not trim characters beyond the hostname. In fact, due to #51 it doesn't work at all right now. Corrected and renamed toHttpFilteringEngine::ExtractHostNameFromUrl(...)
.