summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/httpoptions.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-15 11:16:27 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-15 11:16:27 +0300
commitbccc10db9a90d365c353baebf443fde2030ce970 (patch)
tree2c2e1fd94b29667a809f8d7285d049f5ff5d424d /indra/llcorehttp/httpoptions.cpp
parent531cd34f670170ade57f8813fe48012b61a1d3c2 (diff)
parentbb3c36f5cbc0c3b542045fd27255eee24e03da22 (diff)
Merge branch 'main' into marchcat/x-b-merge
# Conflicts: # autobuild.xml # indra/cmake/ConfigurePkgConfig.cmake # indra/cmake/ICU4C.cmake # indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.cpp # indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.h # indra/media_plugins/gstreamer010/llmediaimplgstreamertriviallogging.h # indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.cpp # indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.h # indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp # indra/newview/llappviewerlinux_api.h # indra/newview/llappviewerlinux_api_dbus.cpp # indra/newview/llappviewerlinux_api_dbus.h # indra/newview/llfloateremojipicker.cpp # indra/newview/lloutfitslist.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)