/// @brief Handshake callback handler
/// @param ec Error status of the ASIO connect
- bool handshakeHandler(const boost::system::error_code& ec, int) {
+ bool handshakeHandler(const boost::system::error_code&, int) {
ADD_FAILURE() << "handshake callback handler is called";
// ec indicates an error, return true, so that error can be handled
// by Connection logic.
/// @brief Handshake callback handler
/// @param ec Error status of the ASIO connect
- bool handshakeHandler(const boost::system::error_code& ec, int) {
+ bool handshakeHandler(const boost::system::error_code&, int) {
++handshake_cnt_;
// ec indicates an error, return true, so that error can be handled
// by Connection logic.