File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -678,13 +678,21 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
678
678
679
679
### Boost 1.85
680
680
681
- * Fixes [ issue 170] ( https://github.com/boostorg/redis/issues/170 ) .
681
+ * ( [ Issue 170] ( https://github.com/boostorg/redis/issues/170 ) )
682
682
Under load and on low-latency networks it is possible to start
683
683
receiving responses before the write operation completed and while
684
684
the request is still marked as staged and not written. This messes
685
685
up with the heuristics that classifies responses as unsolicied or
686
686
not.
687
687
688
+ * ([ Issue 168] ( https://github.com/boostorg/redis/issues/168 ) ).
689
+ Provides SSL context getters. The user wants to be able to pass the
690
+ ` ssl::context ` in the connection constructor as is done in Boost.Beast
691
+ and Boost.MySql. However, doing so would penalize users on plain
692
+ connections, which would have to start passing a dummy context on
693
+ every instantiation. If there is more convincing argument I will
694
+ change this in the future.
695
+
688
696
### Boost 1.84 (First release in Boost)
689
697
690
698
* Deprecates the ` async_receive ` overload that takes a response. Users
Original file line number Diff line number Diff line change @@ -423,6 +423,14 @@ class connection {
423
423
usage get_usage () const noexcept
424
424
{ return impl_.get_usage (); }
425
425
426
+ // / Returns the ssl context.
427
+ auto const & get_ssl_context () const noexcept
428
+ { return impl_.get_ssl_context ();}
429
+
430
+ // / Returns the ssl context.
431
+ auto & get_ssl_context () noexcept
432
+ { return impl_.get_ssl_context ();}
433
+
426
434
private:
427
435
void
428
436
async_run_impl (
You can’t perform that action at this time.
0 commit comments