diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-01 08:16:58 +0300 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-05-01 08:16:58 +0300 |
commit | 38c2a5bde985a6a8a96d912d432f8bdf7e5b60be (patch) | |
tree | b3469444ea8dabe4e76a8a265ac086a9db78891c /indra/llcorehttp/httpoptions.cpp | |
parent | 9bf2dfbb39032d7407295089cf181de0987083e5 (diff) | |
parent | e7eced3c87310b15ac20cc3cd470d67686104a14 (diff) |
Merge branch 'marchcat/w-whitespace' into marchcat/x-ws-merge
Diffstat (limited to 'indra/llcorehttp/httpoptions.cpp')
-rw-r--r-- | indra/llcorehttp/httpoptions.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/indra/llcorehttp/httpoptions.cpp b/indra/llcorehttp/httpoptions.cpp index c6365e5091..d85f6039b1 100644 --- a/indra/llcorehttp/httpoptions.cpp +++ b/indra/llcorehttp/httpoptions.cpp @@ -57,66 +57,66 @@ HttpOptions::~HttpOptions() void HttpOptions::setWantHeaders(bool wanted) { - mWantHeaders = wanted; + mWantHeaders = wanted; } void HttpOptions::setTrace(long level) { - mTracing = int(level); + mTracing = int(level); } void HttpOptions::setTimeout(unsigned int timeout) { - mTimeout = timeout; + mTimeout = timeout; } void HttpOptions::setTransferTimeout(unsigned int timeout) { - mTransferTimeout = timeout; + mTransferTimeout = timeout; } void HttpOptions::setRetries(unsigned int retries) { - mRetries = retries; + mRetries = retries; } void HttpOptions::setMinBackoff(HttpTime delay) { - mMinRetryBackoff = delay; + mMinRetryBackoff = delay; } void HttpOptions::setMaxBackoff(HttpTime delay) { - mMaxRetryBackoff = delay; + mMaxRetryBackoff = delay; } void HttpOptions::setUseRetryAfter(bool use_retry) { - mUseRetryAfter = use_retry; + mUseRetryAfter = use_retry; } void HttpOptions::setFollowRedirects(bool follow_redirect) { - mFollowRedirects = follow_redirect; + mFollowRedirects = follow_redirect; } void HttpOptions::setSSLVerifyPeer(bool verify) { - mVerifyPeer = verify; + mVerifyPeer = verify; } void HttpOptions::setSSLVerifyHost(bool verify) { - mVerifyHost = verify; + mVerifyHost = verify; } void HttpOptions::setDNSCacheTimeout(int timeout) { - mDNSCacheTimeout = timeout; + mDNSCacheTimeout = timeout; } void HttpOptions::setHeadersOnly(bool nobody) |