void cancel()
Cancel a started download.
const string & getFile()
Get file to download to.
const vector< string > & getResponseHeaders()
const string & getPassword()
Get password.
void setPassword(const string &password)
Set password.
static const constexpr int16_t HTTP_STATUSCODE_OK
const string & getURL()
Get URL.
void start()
Starts the HTTP download to file.
void join()
Wait until underlying thread has finished.
Mutex downloadThreadMutex
void setUsername(const string &username)
Set username.
vector< string > httpHeader
void reset()
Reset this HTTP client.
const string & getUsername()
Get username.
void setFile(const string &file)
Set file to download to.
void setURL(const string &url)
Set URL.
HTTPDownloadClient()
Public constructor.
uint64_t parseHTTPResponseHeaders(ifstream &rawResponse, int16_t &httpStatusCode, vector< string > &httpHeader)
Parse HTTP response headers.
string createHTTPRequestHeaders(const string &hostName, const string &relativeUrl)
Create HTTP request headers.
Base exception class for network exceptions.