wtx 0.50.0

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// A TLS handshake can follow different paths depending on the negotiated parameters.
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum HandshakePath {
  /// 1-RTT
  Resumed,
  /// 1-RTT when the remote party asked for a new hello
  ResumedWithHelloRetryRequest,
  /// Normal handshake when the remote party asked for a new hello
  FullWithHelloRetryRequest,
  /// Normal handshake
  Full,
}