Created
September 25, 2012 11:58
-
-
Save deanberris/3781341 to your computer and use it in GitHub Desktop.
Configuration Type Pattern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace http = network::http; | |
http::client_options options; | |
options.follow_redirects(true) | |
.accept_encoding({"*/*"}) | |
.version(http::version::http_1_1) | |
.proxy("localhost:8080") | |
.idle_timeout(30); | |
http::client client{options}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment