tokio_xmpp::xmlstream

Function initiate_stream

source
pub async fn initiate_stream<Io: AsyncBufRead + AsyncWrite + Unpin>(
    io: Io,
    stream_ns: &'static str,
    stream_header: StreamHeader<'_>,
    timeouts: Timeouts,
) -> Result<PendingFeaturesRecv<Io>, Error>
Expand description

Initiate a new stream

Initiate a new stream using the given I/O object io. The default XML namespace will be set to stream_ns and the stream header will use the attributes as set in stream_header, along with version 1.0.

The returned object contains the stream header sent by the remote side as well as the internal parser state to continue the negotiation.