tokio_xmpp/connect/
mod.rs

1//! `ServerConnector` provides streams for XMPP clients
2
3use sasl::common::ChannelBinding;
4use tokio::io::{AsyncBufRead, AsyncWrite};
5use xmpp_parsers::jid::Jid;
6
7use crate::xmlstream::{PendingFeaturesRecv, Timeouts};
8use crate::Error;
9
10#[cfg(feature = "starttls")]
11pub mod starttls;
12#[cfg(feature = "starttls")]
13pub use starttls::StartTlsServerConnector;
14
15#[cfg(feature = "insecure-tcp")]
16pub mod tcp;
17#[cfg(feature = "insecure-tcp")]
18pub use tcp::TcpServerConnector;
19
20mod dns;
21pub use dns::DnsConfig;
22
23/// trait returned wrapped in XmppStream by ServerConnector
24pub trait AsyncReadAndWrite: AsyncBufRead + AsyncWrite + Unpin + Send {}
25impl<T: AsyncBufRead + AsyncWrite + Unpin + Send> AsyncReadAndWrite for T {}
26
27/// Trait that must be extended by the implementation of ServerConnector
28pub trait ServerConnectorError: core::error::Error + Sync + Send {}
29
30/// Trait called to connect to an XMPP server, perhaps called multiple times
31pub trait ServerConnector: Clone + core::fmt::Debug + Send + Unpin + 'static {
32    /// The type of Stream this ServerConnector produces
33    type Stream: AsyncReadAndWrite;
34    /// This must return the connection ready to login, ie if starttls is involved, after TLS has been started, and then after the <stream headers are exchanged
35    fn connect(
36        &self,
37        jid: &Jid,
38        ns: &'static str,
39        timeouts: Timeouts,
40    ) -> impl core::future::Future<
41        Output = Result<(PendingFeaturesRecv<Self::Stream>, ChannelBinding), Error>,
42    > + Send;
43}