Home
last modified time | relevance | path

Searched refs:control_queue (Results 1 – 3 of 3) sorted by relevance

/webrtc/sctp/src/queue/
H A Dmod.rs4 pub(crate) mod control_queue; module
/webrtc/sctp/src/association/
H A Dassociation_internal.rs47 control_queue: ControlQueue, field
131 control_queue: ControlQueue::new(), in new()
189 self.control_queue.push_back(outbound); in send_init()
210 self.control_queue.push_back(outbound); in send_cookie_echo()
555 if !self.control_queue.is_empty() { in gather_outbound()
556 for p in self.control_queue.drain(..) { in gather_outbound()
2170 self.control_queue.push_back(packet); in handle_chunk()
2200 self.control_queue.append(&mut buf); in handle_chunk()
H A Dmod.rs32 use crate::queue::control_queue::ControlQueue;