Structs§
- Interface shared by client and server connections.
- A structure that implements
std::io::Read
for reading plaintext. - A structure that implements
std::io::Write
for writing plaintext.
Enums§
- A client or server connection.
Statics§
- How many ChangeCipherSpec messages we accept and drop in TLS1.3 handshakes. The spec says 1, but implementations (namely the boringssl test suite) get this wrong. BoringSSL itself accepts up to 32.
Traits§
- Internal trait implemented by the [
ServerConnection
]/[ClientConnection
] allowing them to be the subject of aWriter
. - Data specific to the peer’s side (client or server).