sqlx_core_oldapi/mysql/protocol/connect/
mod.rs

1//! Connection Phase
2//!
3//! <https://dev.mysql.com/doc/internals/en/connection-phase.html>
4
5mod auth_switch;
6mod handshake;
7mod handshake_response;
8mod ssl_request;
9
10pub(crate) use auth_switch::{AuthSwitchRequest, AuthSwitchResponse};
11pub(crate) use handshake::Handshake;
12pub(crate) use handshake_response::HandshakeResponse;
13pub(crate) use ssl_request::SslRequest;