aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws
diff options
context:
space:
mode:
authorIlnaz Nizametdinov <i.nizametdinov@gmail.com>2022-02-10 16:48:00 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:00 +0300
commit86c3bbf7131fc3929bdb31e29fdf016038d68594 (patch)
treea6b01cf8492a661e63d723c854d78b437d548314 /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws
parent63966679b69e4dc92ff420dacaed6e476c6c8412 (diff)
downloadydb-86c3bbf7131fc3929bdb31e29fdf016038d68594.tar.gz
Restoring authorship annotation for Ilnaz Nizametdinov <i.nizametdinov@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws')
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/client/ClientConfiguration.h20
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/http/curl/CurlHttpClient.h4
-rw-r--r--contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/utils/Outcome.h10
3 files changed, 17 insertions, 17 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/client/ClientConfiguration.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/client/ClientConfiguration.h
index ba54baaa83..7b75018619 100644
--- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/client/ClientConfiguration.h
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/client/ClientConfiguration.h
@@ -180,22 +180,22 @@ namespace Aws
*/
Aws::String caPath;
/**
- * Same as caPath, but useful if you have users going through a proxy.
- * Used to set CURLOPT_PROXY_CAPATH in libcurl.
- */
- Aws::String proxyCaPath;
- /**
+ * Same as caPath, but useful if you have users going through a proxy.
+ * Used to set CURLOPT_PROXY_CAPATH in libcurl.
+ */
+ Aws::String proxyCaPath;
+ /**
* If you certificate file is different from the default, you can tell clients that
* aren't using the default trust store where to find your ca file.
* If you are on windows or apple, you likely don't want this.
*/
Aws::String caFile;
/**
- * Same as caFile, but useful if you have users going through a proxy.
- * Used to set CURLOPT_PROXY_CAINFO in libcurl.
- */
- Aws::String proxyCaFile;
- /**
+ * Same as caFile, but useful if you have users going through a proxy.
+ * Used to set CURLOPT_PROXY_CAINFO in libcurl.
+ */
+ Aws::String proxyCaFile;
+ /**
* Rate Limiter implementation for outgoing bandwidth. Default is wide-open.
*/
std::shared_ptr<Aws::Utils::RateLimits::RateLimiterInterface> writeRateLimiter;
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/http/curl/CurlHttpClient.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/http/curl/CurlHttpClient.h
index 31f96befd5..c3051b8152 100644
--- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/http/curl/CurlHttpClient.h
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/http/curl/CurlHttpClient.h
@@ -63,8 +63,8 @@ private:
bool m_verifySSL;
Aws::String m_caPath;
Aws::String m_caFile;
- Aws::String m_proxyCaPath;
- Aws::String m_proxyCaFile;
+ Aws::String m_proxyCaPath;
+ Aws::String m_proxyCaFile;
bool m_disableExpectHeader;
bool m_allowRedirects;
static std::atomic<bool> isInit;
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/utils/Outcome.h b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/utils/Outcome.h
index 70e9e4be26..6683e3d860 100644
--- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/utils/Outcome.h
+++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-core/include/aws/core/utils/Outcome.h
@@ -26,19 +26,19 @@ namespace Aws
{
public:
- Outcome() : result(), error(), success(false)
+ Outcome() : result(), error(), success(false)
{
}
- Outcome(const R& r) : result(r), error(), success(true)
+ Outcome(const R& r) : result(r), error(), success(true)
{
}
- Outcome(const E& e) : result(), error(e), success(false)
+ Outcome(const E& e) : result(), error(e), success(false)
{
}
- Outcome(R&& r) : result(std::forward<R>(r)), error(), success(true)
+ Outcome(R&& r) : result(std::forward<R>(r)), error(), success(true)
{
}
- Outcome(E&& e) : result(), error(std::forward<E>(e)), success(false)
+ Outcome(E&& e) : result(), error(std::forward<E>(e)), success(false)
{
}
Outcome(const Outcome& o) :