1
2
3
4
5
6
7
8
9
10
11
12
13
//! Connection Phase
//!
//! <https://dev.mysql.com/doc/internals/en/connection-phase.html>

mod auth_switch;
mod handshake;
mod handshake_response;
mod ssl_request;

pub(crate) use auth_switch::{AuthSwitchRequest, AuthSwitchResponse};
pub(crate) use handshake::Handshake;
pub(crate) use handshake_response::HandshakeResponse;
pub(crate) use ssl_request::SslRequest;