style: Set clang-format width 100 (#2953)

This commit is contained in:
Ayaz Salikhov
2026-02-20 15:56:03 +00:00
committed by GitHub
parent 480264ff8f
commit 6ba58f42f0
575 changed files with 14315 additions and 6552 deletions

View File

@@ -53,8 +53,8 @@ using tcp = boost::asio::ip::tcp;
/**
* @brief Represents a HTTPS connection established by a client.
*
* It will handle the upgrade to secure websocket, pass the ownership of the socket to the upgrade session.
* Otherwise, it will pass control to the base class.
* It will handle the upgrade to secure websocket, pass the ownership of the socket to the upgrade
* session. Otherwise, it will pass control to the base class.
*
* @tparam HandlerType The type of the server handler to use
*/
@@ -159,7 +159,9 @@ public:
doClose()
{
boost::beast::get_lowest_layer(stream_).expires_after(std::chrono::seconds(30));
stream_.async_shutdown(boost::beast::bind_front_handler(&SslHttpSession::onShutdown, this->shared_from_this()));
stream_.async_shutdown(
boost::beast::bind_front_handler(&SslHttpSession::onShutdown, this->shared_from_this())
);
}
/**