build(deps): fix boost 1.87 compatibility (#3457)
This commit is contained in:
parent
e062484b46
commit
1e2fc2eb10
3 changed files with 14 additions and 14 deletions
|
|
@ -46,8 +46,8 @@ namespace nvhttp {
|
|||
|
||||
class SunshineHTTPS: public SimpleWeb::HTTPS {
|
||||
public:
|
||||
SunshineHTTPS(boost::asio::io_service &io_service, boost::asio::ssl::context &ctx):
|
||||
SimpleWeb::HTTPS(io_service, ctx) {}
|
||||
SunshineHTTPS(boost::asio::io_context &io_context, boost::asio::ssl::context &ctx):
|
||||
SimpleWeb::HTTPS(io_context, ctx) {}
|
||||
|
||||
virtual ~SunshineHTTPS() {
|
||||
// Gracefully shutdown the TLS connection
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue