Home
last modified time | relevance | path

Searched defs:DTLSConn (Results 1 – 4 of 4) sorted by relevance

/webrtc/dtls/src/conn/
H A Dmod.rs71 pub struct DTLSConn { struct
72 conn: Arc<dyn Conn + Send + Sync>,
73 pub(crate) cache: HandshakeCache, // caching of handshake messages for verifyData generation
74 …ex<mpsc::Receiver<Result<Vec<u8>>>>, // Decrypted Application Data or error, pull by calling `Read`
75 pub(crate) state: State, // Internal state
77 handshake_completed_successfully: Arc<AtomicBool>,
78 connection_closed_by_user: bool,
80 closed: AtomicBool, // *closer.Closer
109 impl Conn for DTLSConn { argument
143 impl DTLSConn { implementation
H A Dconn_test.rs42 ) -> Result<(DTLSConn, DTLSConn)> { in pipe_conn() argument
104 ) -> Result<DTLSConn> { in create_test_client()
118 ) -> Result<DTLSConn> { in create_test_server()
/webrtc/dtls/src/
H A Dhandshaker.rs199 impl DTLSConn { implementation
/webrtc/webrtc/src/dtls_transport/
H A Dmod.rs108 pub(crate) async fn conn(&self) -> Option<Arc<DTLSConn>> { in conn()