| 409 | } |
| 410 | |
| 411 | void HTTPObject::setDownloadPath(const std::string &path) |
| 412 | { |
| 413 | char expanded[0x100]; |
| 414 | Con::expandScriptFilename(expanded, 0x100, path.c_str()); |
| 415 | mDownloadPath = std::string(expanded); |
| 416 | mDownload = true; |
| 417 | } |
| 418 | |
| 419 | void HTTPObject::addHeader(const std::string &name, const std::string &value) |
| 420 | { |
no test coverage detected