| 668 | } |
| 669 | |
| 670 | void MySQLHandler::finishHandshakeSSL( |
| 671 | [[maybe_unused]] size_t packet_size, [[maybe_unused]] char * buf, [[maybe_unused]] size_t pos, |
| 672 | [[maybe_unused]] std::function<void(size_t)> read_bytes, [[maybe_unused]] MySQLProtocol::ConnectionPhase::HandshakeResponse & packet) |
| 673 | { |
| 674 | throw Exception(ErrorCodes::SUPPORT_IS_DISABLED, "Client requested SSL, while it is disabled."); |
| 675 | } |
| 676 | |
| 677 | #if USE_SSL |
| 678 | MySQLHandlerSSL::MySQLHandlerSSL( |
nothing calls this directly
no test coverage detected