From 32d7205cfc371fe12bb1c6522f49894a65f6df6e Mon Sep 17 00:00:00 2001 From: Peter Adam Korodi <52385411+kp-cat@users.noreply.github.com> Date: Wed, 29 Nov 2023 12:26:33 +0100 Subject: [PATCH] Update cpp.md (#331) --- website/docs/sdk-reference/cpp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/sdk-reference/cpp.md b/website/docs/sdk-reference/cpp.md index 96137a15..5dc79870 100644 --- a/website/docs/sdk-reference/cpp.md +++ b/website/docs/sdk-reference/cpp.md @@ -570,9 +570,9 @@ Provide your own network credentials (username/password), and proxy server setti ```cpp ConfigCatOptions options; -options.proxies = {{"http", "http://www.fake_auth_proxy.com"}}; // Protocol, Proxy url +options.proxies = {{"https", "proxyhost:port"}}; // Protocol, Proxy options.proxyAuthentications = { - {"http", ProxyAuthentication{"user", "password"}} // Protocol, ProxyAuthentication + {"https", ProxyAuthentication{"user", "password"}} // Protocol, ProxyAuthentication }; auto client = ConfigCatClient::get("#YOUR-SDK-KEY#", &options); ```