pub struct AgentSocket {
pub stream_id: usize,
pub component_id: usize,
pub transport: TransportType,
pub from: Address,
pub to: Address,
}Expand description
A socket with the specified network 5-tuple.
Fields§
§stream_id: usizeThe ICE stream id.
component_id: usizeThe ICE component id.
transport: TransportTypeThe transport.
from: AddressThe socket source address.
to: AddressThe socket destination address.