File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
boost/network/protocol/http/impl Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -50,9 +50,9 @@ namespace boost { namespace network { namespace http { namespace impl {
50
50
resolve_function resolve,
51
51
bool follow_redirect
52
52
) :
53
+ follow_redirect_ (follow_redirect),
53
54
resolver_ (resolver),
54
55
resolve_ (resolve),
55
- follow_redirect_ (follow_redirect),
56
56
request_strand_ (new boost::asio::io_service::strand(resolver->get_io_service ()))
57
57
{}
58
58
@@ -303,11 +303,11 @@ namespace boost { namespace network { namespace http { namespace impl {
303
303
}
304
304
}
305
305
306
- boost::shared_ptr<boost::asio::io_service::strand> request_strand_ ;
306
+ bool follow_redirect_ ;
307
307
boost::shared_ptr<resolver_type> resolver_;
308
308
boost::shared_ptr<boost::asio::ip::tcp::socket> socket_;
309
309
resolve_function resolve_;
310
- bool follow_redirect_ ;
310
+ boost::shared_ptr<boost::asio::io_service::strand> request_strand_ ;
311
311
string_type command_string_;
312
312
string_type method;
313
313
};
Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ namespace boost { namespace network { namespace http { namespace impl {
39
39
bool follow_redirect,
40
40
optional<string_type> const & certificate_filename = optional<string_type>()
41
41
) :
42
+ follow_redirect_ (follow_redirect),
42
43
resolver_ (resolver),
44
+ certificate_filename_ (certificate_filename),
43
45
resolve_ (resolve),
44
- follow_redirect_ (follow_redirect),
45
- request_strand_ (new boost::asio::io_service::strand(resolver->get_io_service ())),
46
- certificate_filename_(certificate_filename)
46
+ request_strand_ (new boost::asio::io_service::strand(resolver->get_io_service ()))
47
47
{}
48
48
49
49
@@ -337,13 +337,13 @@ namespace boost { namespace network { namespace http { namespace impl {
337
337
}
338
338
}
339
339
340
- boost::shared_ptr<boost::asio::io_service::strand> request_strand_ ;
340
+ bool follow_redirect_ ;
341
341
boost::shared_ptr<resolver_type> resolver_;
342
342
optional<string_type> certificate_filename_;
343
343
resolve_function resolve_;
344
344
boost::shared_ptr<boost::asio::ssl::context> context_;
345
345
boost::shared_ptr<boost::asio::ssl::stream<boost::asio::ip::tcp::socket> > socket_;
346
- bool follow_redirect_ ;
346
+ boost::shared_ptr<boost::asio::io_service::strand> request_strand_ ;
347
347
string_type command_string_;
348
348
string_type method;
349
349
};
You can’t perform that action at this time.
0 commit comments