Fixing all of the things. 😩
This commit is contained in:
parent
53f941449f
commit
c979acff52
14 changed files with 171 additions and 76 deletions
|
@ -60,7 +60,8 @@ namespace HTTP{
|
|||
size_t getSize() const; ///< Returns the size of the currently open URI, if known. Returns std::string::npos if unknown size.
|
||||
|
||||
void (*httpBodyCallback)(const char *ptr, size_t size);
|
||||
void dataCallback(const char *ptr, size_t size);
|
||||
virtual void dataCallback(const char *ptr, size_t size);
|
||||
virtual size_t getDataCallbackPos() const;
|
||||
|
||||
std::string userAgentOverride;
|
||||
|
||||
|
@ -86,4 +87,6 @@ namespace HTTP{
|
|||
HTTP::Downloader downer; ///< For HTTP(S)-based URIs, the Downloader instance used for the download.
|
||||
void init();
|
||||
};
|
||||
|
||||
HTTP::URL localURIResolver();
|
||||
}// namespace HTTP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue