Skip to content

Commit

Permalink
Update cpp.md (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
kp-cat authored Nov 29, 2023
1 parent 7320474 commit 32d7205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/sdk-reference/cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
```
Expand Down

0 comments on commit 32d7205

Please sign in to comment.