]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3191] fix botan code after function rename
authorRazvan Becheriu <razvan@isc.org>
Thu, 14 Dec 2023 20:20:10 +0000 (22:20 +0200)
committerRazvan Becheriu <razvan@isc.org>
Thu, 14 Dec 2023 20:20:10 +0000 (22:20 +0200)
src/lib/asiolink/botan_boost_tls.h
src/lib/asiolink/botan_tls.h

index abfef2354c443c79f909b017e789a7759751d085..45dcfa8630bda517e8d7f20913b2cda8b78d3332 100644 (file)
@@ -108,7 +108,7 @@ typedef Botan::TLS::Stream<boost::asio::ip::tcp::socket> TlsStreamImpl;
 template <typename Callback, typename TlsStreamImpl>
 TlsStreamBase<Callback, TlsStreamImpl>::
 TlsStreamBase(IOService& service, TlsContextPtr context)
-    : TlsStreamImpl(service.getIOService(), context->getContext()),
+    : TlsStreamImpl(service.getInternalIOService(), context->getContext()),
       role_(context->getRole()) {
 }
 
index 6197ef8344442a0e78f033814c9ba0ff87e1e2a0..0a9b3b16c637f7132ff609834a545872be9abf9b 100644 (file)
@@ -96,7 +96,7 @@ typedef boost::asio::ip::tcp::socket TlsStreamImpl;
 template <typename Callback, typename TlsStreamImpl>
 TlsStreamBase<Callback, TlsStreamImpl>::
 TlsStreamBase(IOService& service, TlsContextPtr context)
-    : TlsStreamImpl(service.getIOService()), role_(context->getRole()) {
+    : TlsStreamImpl(service.getInternalIOService()), role_(context->getRole()) {
 }
 
 /// @brief Botan fake TLS stream.