Code cleanup
* Moved Responder stuff to LLHTTPClient. * Renamed LLHTTPClient::Responder to LLHTTPClient::ResponderWithResult. * Deleted LLHTTPClientAdapter and LLHTTPClientInterface. * Renamed AICurlInterface::TransferInfo to AITransferInfo and moved it to llhttpclient.h * Removed 'CURLcode code' argument from completed_headers.
This commit is contained in:
@@ -156,14 +156,14 @@ XMLRPC_VALUE LLXMLRPCValue::getValue() const
|
||||
return mV;
|
||||
}
|
||||
|
||||
void XMLRPCResponder::completed_headers(U32 status, std::string const& reason, CURLcode code, AICurlInterface::TransferInfo* info)
|
||||
void XMLRPCResponder::completed_headers(U32 status, std::string const& reason, AITransferInfo* info)
|
||||
{
|
||||
if (info)
|
||||
{
|
||||
mTransferInfo = *info;
|
||||
}
|
||||
// Call base class implementation.
|
||||
LegacyPolledResponder::completed_headers(status, reason, code, info);
|
||||
LegacyPolledResponder::completed_headers(status, reason, info);
|
||||
}
|
||||
|
||||
void XMLRPCResponder::completedRaw(U32 status, std::string const& reason, LLChannelDescriptors const& channels, buffer_ptr_t const& buffer)
|
||||
|
||||
Reference in New Issue
Block a user