[][src]Struct srt_protocol::ControlPacket

pub struct ControlPacket {
    pub timestamp: TimeStamp,
    pub dest_sockid: SocketID,
    pub control_type: ControlTypes,
}

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                     ~
 |                                                               |
 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

(from https://tools.ietf.org/html/draft-gg-udt-03#page-5)

Fields

timestamp: TimeStamp

The timestamp, relative to the socket start time (wrapping every 2^32 microseconds)

dest_sockid: SocketID

The dest socket ID, used for multiplexing

control_type: ControlTypes

The extra data

Implementations

impl ControlPacket[src]

pub fn parse(
    buf: &mut impl Buf,
    is_ipv6: bool
) -> Result<ControlPacket, PacketParseError>
[src]

pub fn serialize<T: BufMut>(&self, into: &mut T)[src]

pub fn handshake(&self) -> Option<&HandshakeControlInfo>[src]

Trait Implementations

impl Clone for ControlPacket[src]

impl Debug for ControlPacket[src]

impl Eq for ControlPacket[src]

impl From<ControlPacket> for Packet[src]

impl PartialEq<ControlPacket> for ControlPacket[src]

impl StructuralEq for ControlPacket[src]

impl StructuralPartialEq for ControlPacket[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,