File tree 1 file changed +3
-3
lines changed
boost/network/protocol/http/client
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class client_options {
35
35
io_service_(),
36
36
always_verify_peer_(true ),
37
37
timeout_(0 ),
38
- remove_chunk_markers_(false ) {}
38
+ remove_chunk_markers_(true ) {}
39
39
40
40
client_options (client_options const & other)
41
41
: cache_resolved_(other.cache_resolved_),
@@ -50,7 +50,7 @@ class client_options {
50
50
io_service_(other.io_service_),
51
51
always_verify_peer_(other.always_verify_peer_),
52
52
timeout_(other.timeout_),
53
- remove_chunk_markers_(other.remove_chunk_markers ) {}
53
+ remove_chunk_markers_(other.remove_chunk_markers_ ) {}
54
54
55
55
client_options& operator =(client_options other) {
56
56
other.swap (*this );
@@ -157,7 +157,7 @@ class client_options {
157
157
return *this ;
158
158
}
159
159
160
- // / Set an overall timeout for HTTP requests .
160
+ // / Set whether we process chunked-encoded streams .
161
161
client_options& remove_chunk_markers (bool v) {
162
162
remove_chunk_markers_ = v;
163
163
return *this ;
You can’t perform that action at this time.
0 commit comments