summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/httpoptions.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2024-06-10 17:06:06 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2024-06-10 19:25:02 +0300
commit0dcc912cecdfb365c1f4246545ece40ccb7bc18e (patch)
treeccf664c765d1adbbf4985069321df65c85ca36e2 /indra/llcorehttp/httpoptions.cpp
parentbd8438f7083643ae5812b14e35e69e69ef1616c6 (diff)
parentd317454c82e016a02c8a708a0118f3ff29aa8e82 (diff)
Merge main into inventory_favorites
# Conflicts: # indra/llui/llfolderviewmodel.h # indra/newview/llpanelwearing.cpp # indra/newview/llwearableitemslist.cpp
Diffstat (limited to 'indra/llcorehttp/httpoptions.cpp')
-rw-r--r--indra/llcorehttp/httpoptions.cpp24
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)