mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
@ -1,3 +1,9 @@
|
||||
Version 253:
|
||||
|
||||
* Fix async_detect_ssl handler type
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Version 252:
|
||||
|
||||
* More std::string_view fixes
|
||||
|
@ -430,7 +430,6 @@ async_detect_ssl(
|
||||
// Non-const references need to be passed as pointers,
|
||||
// since we don't want a decay-copy.
|
||||
|
||||
|
||||
return net::async_initiate<
|
||||
CompletionToken,
|
||||
void(error_code, bool)>(
|
||||
@ -505,7 +504,7 @@ public:
|
||||
AsyncReadStream& stream,
|
||||
DynamicBuffer& buffer)
|
||||
: beast::async_base<
|
||||
DetectHandler_,
|
||||
DetectHandler,
|
||||
beast::executor_type<AsyncReadStream>>(
|
||||
std::forward<DetectHandler_>(handler),
|
||||
stream.get_executor())
|
||||
|
Reference in New Issue
Block a user