pub struct TcpServerConnector(pub DnsConfig);
Available on crate feature
insecure-tcp
only.Expand description
Connect via insecure plaintext TCP to an XMPP server This should only be used over localhost or otherwise when you know what you are doing Probably mostly useful for Components
Tuple Fields§
§0: DnsConfig
Trait Implementations§
Source§impl Clone for TcpServerConnector
impl Clone for TcpServerConnector
Source§fn clone(&self) -> TcpServerConnector
fn clone(&self) -> TcpServerConnector
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TcpServerConnector
impl Debug for TcpServerConnector
Source§impl From<DnsConfig> for TcpServerConnector
impl From<DnsConfig> for TcpServerConnector
Source§fn from(dns_config: DnsConfig) -> TcpServerConnector
fn from(dns_config: DnsConfig) -> TcpServerConnector
Converts to this type from the input type.
Source§impl ServerConnector for TcpServerConnector
impl ServerConnector for TcpServerConnector
Source§async fn connect(
&self,
jid: &Jid,
ns: &'static str,
timeouts: Timeouts,
) -> Result<PendingFeaturesRecv<Self::Stream>, Error>
async fn connect( &self, jid: &Jid, ns: &'static str, timeouts: Timeouts, ) -> Result<PendingFeaturesRecv<Self::Stream>, Error>
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
Source§fn channel_binding(_stream: &Self::Stream) -> Result<ChannelBinding, Error>
fn channel_binding(_stream: &Self::Stream) -> Result<ChannelBinding, Error>
Return channel binding data if available
do not fail if channel binding is simply unavailable, just return Ok(None)
this should only be called after the TLS handshake is finished
Auto Trait Implementations§
impl Freeze for TcpServerConnector
impl RefUnwindSafe for TcpServerConnector
impl Send for TcpServerConnector
impl Sync for TcpServerConnector
impl Unpin for TcpServerConnector
impl UnwindSafe for TcpServerConnector
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more