X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2FHTTPRequest.cxx;h=ce706957b6f45469b4213b9f2c6244f462830fc9;hb=adb7db9229db1d869b254ac18f1471bed464c508;hp=84855a4c7d290c879fca3160b18e4a8744437346;hpb=69ef461e6debc526ce66493af2c6da9119a6f8c2;p=simgear.git diff --git a/simgear/io/HTTPRequest.cxx b/simgear/io/HTTPRequest.cxx index 84855a4c..ce706957 100644 --- a/simgear/io/HTTPRequest.cxx +++ b/simgear/io/HTTPRequest.cxx @@ -112,8 +112,10 @@ string Request::path() const } int hostEnd = u.find('/', schemeEnd + 3); - if (hostEnd < 0) { - return ""; // couldn't parse host + if (hostEnd < 0) { +// couldn't parse host, or URL looks like 'http://foo.com' (no trailing '/') +// fixup to root resource path: '/' + return "/"; } int query = u.find('?', hostEnd + 1); @@ -203,6 +205,7 @@ void Request::setFailure(int code, const std::string& reason) void Request::failed() { // no-op in base class + SG_LOG(SG_IO, SG_INFO, "request failed:" << url()); } Request::HTTPVersion Request::decodeVersion(const string& v) @@ -218,6 +221,22 @@ bool Request::closeAfterComplete() const // for non HTTP/1.1 connections, assume server closes return _willClose || (_responseVersion != HTTP_1_1); } + +int Request::requestBodyLength() const +{ + return -1; +} + +std::string Request::requestBodyType() const +{ + return "text/plain"; +} + +void Request::getBodyData(char*, int& count) const +{ + count = 0; + return; +} } // of namespace HTTP