tokio_xmpp/connect/
mod.rs1use 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
23pub trait AsyncReadAndWrite: AsyncBufRead + AsyncWrite + Unpin + Send {}
25impl<T: AsyncBufRead + AsyncWrite + Unpin + Send> AsyncReadAndWrite for T {}
26
27pub trait ServerConnectorError: core::error::Error + Sync + Send {}
29
30pub trait ServerConnector: Clone + core::fmt::Debug + Send + Unpin + 'static {
32 type Stream: AsyncReadAndWrite;
34 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}