diff options
author | Rider Linden <none@none> | 2015-03-23 13:39:33 -0700 |
---|---|---|
committer | Rider Linden <none@none> | 2015-03-23 13:39:33 -0700 |
commit | e7a1e6198b9bf1b42d60bff9559494887e22d5e7 (patch) | |
tree | 3149aa622ad7db197efd9fc9c16a99c7fbb61b89 /indra/llcorehttp | |
parent | 530bf560b2c2c9bf534bb3ba4f588c72a59be703 (diff) |
Slightly cleaner than this-> ing everythnig.
Diffstat (limited to 'indra/llcorehttp')
-rwxr-xr-x | indra/llcorehttp/httpcommon.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/indra/llcorehttp/httpcommon.cpp b/indra/llcorehttp/httpcommon.cpp index c201400423..d923dfa5d6 100755 --- a/indra/llcorehttp/httpcommon.cpp +++ b/indra/llcorehttp/httpcommon.cpp @@ -131,18 +131,18 @@ std::string HttpStatus::toString() const { return std::string(""); } - switch (this->mDetails->mType) + switch (getType()) { case EXT_CURL_EASY: - return std::string(curl_easy_strerror(CURLcode(this->mDetails->mStatus))); + return std::string(curl_easy_strerror(CURLcode(getStatus()))); case EXT_CURL_MULTI: - return std::string(curl_multi_strerror(CURLMcode(this->mDetails->mStatus))); + return std::string(curl_multi_strerror(CURLMcode(getStatus()))); case LLCORE: - if (this->mDetails->mStatus >= 0 && this->mDetails->mStatus < llcore_errors_count) + if (getStatus() >= 0 && getStatus() < llcore_errors_count) { - return std::string(llcore_errors[this->mDetails->mStatus]); + return std::string(llcore_errors[getStatus()]); } break; @@ -154,7 +154,7 @@ std::string HttpStatus::toString() const while (true) { int at((bottom + top) / 2); - if (this->mDetails->mType == http_errors[at].mCode) + if (getType() == http_errors[at].mCode) { return std::string(http_errors[at].mText); } @@ -162,7 +162,7 @@ std::string HttpStatus::toString() const { break; } - else if (this->mDetails->mType < http_errors[at].mCode) + else if (getType() < http_errors[at].mCode) { top = at; } @@ -182,9 +182,9 @@ std::string HttpStatus::toTerseString() const { std::ostringstream result; - unsigned int error_value((unsigned short)(this->mDetails->mStatus)); + unsigned int error_value((unsigned short)getStatus()); - switch (this->mDetails->mType) + switch (getType()) { case EXT_CURL_EASY: result << "Easy_"; @@ -202,7 +202,7 @@ std::string HttpStatus::toTerseString() const if (isHttpStatus()) { result << "Http_"; - error_value = this->mDetails->mType; + error_value = getType(); } else { @@ -244,7 +244,7 @@ bool HttpStatus::isRetryable() const // Disable the '*this == inv_status' test and look for 'Core_9' // failures in log files. - return ((isHttpStatus() && this->mDetails->mType >= 499 && this->mDetails->mType <= 599) || // Include special 499 in retryables + return ((isHttpStatus() && getType() >= 499 && getType() <= 599) || // Include special 499 in retryables *this == cant_connect || // Connection reset/endpoint problems *this == cant_res_proxy || // DNS problems *this == cant_res_host || // DNS problems |