File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
boost/network/protocol/http/client Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class client_options {
3535 io_service_(),
3636 always_verify_peer_(true ),
3737 timeout_(0 ),
38- remove_chunk_markers_(false ) {}
38+ remove_chunk_markers_(true ) {}
3939
4040 client_options (client_options const & other)
4141 : cache_resolved_(other.cache_resolved_),
@@ -50,7 +50,7 @@ class client_options {
5050 io_service_(other.io_service_),
5151 always_verify_peer_(other.always_verify_peer_),
5252 timeout_(other.timeout_),
53- remove_chunk_markers_(other.remove_chunk_markers ) {}
53+ remove_chunk_markers_(other.remove_chunk_markers_ ) {}
5454
5555 client_options& operator =(client_options other) {
5656 other.swap (*this );
@@ -157,7 +157,7 @@ class client_options {
157157 return *this ;
158158 }
159159
160- // / Set an overall timeout for HTTP requests .
160+ // / Set whether we process chunked-encoded streams .
161161 client_options& remove_chunk_markers (bool v) {
162162 remove_chunk_markers_ = v;
163163 return *this ;
You can’t perform that action at this time.
0 commit comments