Lines Matching refs:DTLSConn
71 pub struct DTLSConn { struct
109 impl Conn for DTLSConn { argument
143 impl DTLSConn { implementation
271 let mut c = DTLSConn { in new()
300 let result = DTLSConn::handle_outgoing_packets( in new()
352 result = DTLSConn::read_and_buffer( in new()
557 let raw_handshake_packets = DTLSConn::process_handshake_packet( in handle_outgoing_packets()
574 DTLSConn::process_packet(local_sequence_number, cipher_suite, p).await?; in handle_outgoing_packets()
641 let handshake_fragments = DTLSConn::fragment_handshake(maximum_transmission_unit, h)?; in process_handshake_packet()
758 let (hs, alert, mut err) = DTLSConn::handle_incoming_packet(ctx, pkt, true).await; in read_and_buffer()
818 … DTLSConn::handle_queued_packets(ctx, local_epoch, handshake_completed_successfully, pkts).await?; in read_and_buffer()
839 …let (_, alert, mut err) = DTLSConn::handle_incoming_packet(ctx, p, false).await; // don't re-enque… in handle_queued_packets()