Only allow session-level setting for ssl_verify and buffer_size.

This commit is contained in:
Chunting Gu
2019-03-26 09:55:17 +08:00
parent 6c5dedb807
commit ee56fe9d1b
8 changed files with 18 additions and 52 deletions
+1 -2
View File
@@ -21,8 +21,7 @@ void ExampleBasic() {
.url("http://httpbin.org/get")
.parameter("key1", "value1")
.parameter("key2", "value2")
.header("Accept", "application/json")
.buffer(1000)());
.header("Accept", "application/json")());
std::cout << r->content() << std::endl;
}