[−][src]Struct srt_protocol::packet::ControlPacket
A UDP packet carrying control information
ⓘ
0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |1| Type | Reserved | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | Additional Info | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Time Stamp | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Destination Socket ID | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | | ~ Control Information Field ~ | | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Fields
timestamp: TimeStampThe timestamp, relative to the socket start time (wrapping every 2^32 microseconds)
dest_sockid: SocketIDThe dest socket ID, used for multiplexing
control_type: ControlTypesThe extra data
Implementations
impl ControlPacket[src]
pub fn parse(
buf: &mut impl Buf,
is_ipv6: bool
) -> Result<ControlPacket, PacketParseError>[src]
buf: &mut impl Buf,
is_ipv6: bool
) -> Result<ControlPacket, PacketParseError>
pub fn serialize<T: BufMut>(&self, into: &mut T)[src]
pub fn handshake(&self) -> Option<&HandshakeControlInfo>[src]
Trait Implementations
impl Clone for ControlPacket[src]
fn clone(&self) -> ControlPacket[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for ControlPacket[src]
impl Eq for ControlPacket[src]
impl From<ControlPacket> for Packet[src]
fn from(cp: ControlPacket) -> Self[src]
impl PartialEq<ControlPacket> for ControlPacket[src]
fn eq(&self, other: &ControlPacket) -> bool[src]
fn ne(&self, other: &ControlPacket) -> bool[src]
impl StructuralEq for ControlPacket[src]
impl StructuralPartialEq for ControlPacket[src]
Auto Trait Implementations
impl RefUnwindSafe for ControlPacket[src]
impl Send for ControlPacket[src]
impl Sync for ControlPacket[src]
impl Unpin for ControlPacket[src]
impl UnwindSafe for ControlPacket[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,