Skip to main content

Server

Struct Server 

Source
pub struct Server<R: Read, W: Write, A: Attester> { /* private fields */ }
Expand description

Server side of the wire, an encrypted transport for serving protobuf requests from a connected client. It waits for session resets (empty frames), responds to handshake and afterward decrypts inbound and encrypts outbound messages.

Whenever the server drops a session, fails a handshake or receives data while it has no session, it answers with an empty frame of its own. A client still holding a session thus learns it is gone instead of having to time out.

The device attestation is not interpreted by the wire, it is provided by an Attester and forwarded to the client verbatim.

Implementations§

Source§

impl<R: Read, W: Write, A: Attester> Server<R, W, A>

Source

pub fn new(reader: R, writer: W, signer: SecretKey, attester: A) -> Self

Creates a new server side around a low level reader and writer. The signer is the server’s identity key, which signs the handshake. The client verifies that signature against the key it extracts from the attestation, so the two must match. Reads block per the transport’s semantics, so any timeout must be configured on the reader passed in.

Source

pub fn next_message(&mut self) -> Result<HostToArk, Error>

Serves the next host-to-ark message, decrypting and protobuf decoding it. Empty frames are session resets and run the handshake inline. Junk outside a session, undecryptable packets and failed handshakes are logged, answered with an empty frame and skipped. Only transport failures and malformed messages surface as errors.

Source

pub fn send_message(&mut self, res: ArkToHost) -> Result<(), Error>

Protobuf encodes an ark-to-host message, seals it with the session and sends it. Fails without an active session. A failure after sealing drops the session and signals the client, as the client’s HPKE sequence can no longer be caught up with.

Auto Trait Implementations§

§

impl<R, W, A> Freeze for Server<R, W, A>
where Framing<R, W>: Freeze, A: Freeze,

§

impl<R, W, A> RefUnwindSafe for Server<R, W, A>
where Framing<R, W>: RefUnwindSafe, A: RefUnwindSafe,

§

impl<R, W, A> Send for Server<R, W, A>
where Framing<R, W>: Send, A: Send,

§

impl<R, W, A> Sync for Server<R, W, A>
where Framing<R, W>: Sync, A: Sync,

§

impl<R, W, A> Unpin for Server<R, W, A>
where Framing<R, W>: Unpin, A: Unpin,

§

impl<R, W, A> UnsafeUnpin for Server<R, W, A>
where Framing<R, W>: UnsafeUnpin, A: UnsafeUnpin,

§

impl<R, W, A> UnwindSafe for Server<R, W, A>
where Framing<R, W>: UnwindSafe, A: UnwindSafe,

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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