Skip to main content

ConnectionError

Enum ConnectionError 

Source
pub enum ConnectionError {
Show 16 variants Endpoint(EndpointError), Codec(CodecError), Transport(TransportError), VarInt(VarIntError), NoControlStream, UnexpectedEnd, StreamFinished, InvalidAddress(String), TlsConfig(String), DataStreamState(&'static str), PropertiesOnNonNormalStatus { object_id: u64, properties_len: usize, status: ObjectStatus, }, RequestOnControlStream(MessageType), RequestStreamMessageOnControlStream(MessageType), PayloadOnStatusDatagram { object_id: u64, payload_len: usize, status: Option<ObjectStatus>, }, NonRequestOnRequestStream(MessageType), RespondedToOwnRequest(u64),
}
Expand description

Errors from the connection layer.

Variants§

§

Endpoint(EndpointError)

Endpoint state machine error.

§

Codec(CodecError)

Wire codec error.

§

Transport(TransportError)

Transport-level error.

§

VarInt(VarIntError)

Variable-length integer decoding error.

§

NoControlStream

Control stream was not opened.

§

UnexpectedEnd

Stream ended before a complete message was read.

§

StreamFinished

Stream was finished by the peer.

§

InvalidAddress(String)

Invalid server address string.

§

TlsConfig(String)

TLS configuration error.

§

DataStreamState(&'static str)

Data stream used out of order (e.g. object before header).

§

PropertiesOnNonNormalStatus

An Object arrived carrying properties on a status that is not Normal.

Draft-17 Section 10.2.1.2: “Any Object with status Normal can have properties (Section 2.5). If an endpoint receives properties on an Object with status that is not Normal, it MUST close the session with a PROTOCOL_VIOLATION.”

The codec decodes such an Object rather than refusing it — the frame is well formed, and a tool that reports non-conforming traffic has to be able to read it. Being an endpoint rather than an observer is what turns it into an error, so it is raised here, on the receive path, and not in the decoder.

Fields

§object_id: u64

The Object ID the properties arrived on.

§properties_len: usize

Length in bytes of the properties block.

§status: ObjectStatus

The Object’s status, resolved through the encoding’s elision rule.

Spelled out in full because the glob import of moqtap_codec::types brings a different ObjectStatus into this module.

§

RequestOnControlStream(MessageType)

A message that begins a request stream was handed to Connection::send_control. Nothing was written.

§

RequestStreamMessageOnControlStream(MessageType)

A message draft-17 places on a request stream was handed to Connection::send_control. Nothing was written.

Distinct from ConnectionError::RequestOnControlStream, which is about a message that would begin a request stream of its own. This one is about a message that belongs on a request stream already open, and so has no meaning without one around it.

§

PayloadOnStatusDatagram

A datagram carrying an Object Status arrived with bytes after its header.

Draft-17 Section 10.2.1.1: “Any object with a status code other than zero MUST have an empty payload.” Section 10.3.1 says the same thing about the framing: a datagram with the STATUS bit set “is present and there is no Object Payload.”

The codec cannot see this. DatagramHeader::decode stops at the end of the header and never owns the datagram’s tail, so the only layer that holds both the status and the bytes after it is this one. Without the check the application is handed, say, an End-of-Group object carrying four bytes of payload — a combination the draft forbids outright.

Recoverable: the drafts state the rule as a property of a conforming object, not as one of the “MUST close the session” cases, so the datagram is refused and the session left running.

Fields

§object_id: u64

Object ID from the datagram header.

§payload_len: usize

How many bytes followed the header.

§status: Option<ObjectStatus>

The status the header declared.

Spelled out in full because the glob import of moqtap_codec::types brings a different ObjectStatus into this module.

§

NonRequestOnRequestStream(MessageType)

A bidirectional stream the peer opened began with a message type that does not open a request stream.

Draft-17 Section 3.3: “Bidirectional streams MUST NOT begin with any other message type unless negotiated. If they do, the peer MUST close the Session with a PROTOCOL_VIOLATION.” The session has already been closed on the wire by the time this is returned, and the offending stream reset.

§

RespondedToOwnRequest(u64)

A respond_* helper was handed a request stream this endpoint opened. Nothing was written and no state moved.

Trait Implementations§

Source§

impl Debug for ConnectionError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ConnectionError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for ConnectionError

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<CodecError> for ConnectionError

Source§

fn from(source: CodecError) -> Self

Converts to this type from the input type.
Source§

impl From<DialError> for ConnectionError

Source§

fn from(e: DialError) -> Self

Preserves the variants this error had when the dial was inlined here, so a caller matching on InvalidAddress or TlsConfig sees no change.

Source§

impl From<EndpointError> for ConnectionError

Source§

fn from(source: EndpointError) -> Self

Converts to this type from the input type.
Source§

impl From<TransportError> for ConnectionError

Source§

fn from(source: TransportError) -> Self

Converts to this type from the input type.
Source§

impl From<VarIntError> for ConnectionError

Source§

fn from(source: VarIntError) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more