pub struct AgentTransmit {
pub stream_id: usize,
pub from: Address,
pub to: Address,
pub transport: TransportType,
pub data: &'static [u8],
}Expand description
Transmit the data using the specified 5-tuple.
Fields§
§stream_id: usizeThe ICE stream id.
from: AddressThe socket to send the data from.
to: AddressThe network address to send the data to.
transport: TransportTypeThe transport to send the data over.
data: &'static [u8]The data to send.