summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/httpoptions.cpp
diff options
context:
space:
mode:
authorNicky <nicky.dasmijn@posteo.nl>2024-05-22 11:05:51 +0200
committerNicky <nicky.dasmijn@posteo.nl>2024-05-22 11:05:51 +0200
commitad59ffd4bc7bc77b260da6152a188f6b2ab59d05 (patch)
tree169edbab006d8bbd86b2980ab98fb62e097067ff /indra/llcorehttp/httpoptions.cpp
parent3dc5fa00753bb889280771a2cd17029aa1e42f24 (diff)
parentec23d45e2e9a87147641fed6f8c3ef6083c2f878 (diff)
Merge remote-tracking branch 'mkd/pipewire-linux-volume-catcher' into pipewire-linux-volume-catcher
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)