Rename AsyncClient to Client

This commit is contained in:
xmppftw xmppftw 2024-08-06 21:00:11 +02:00
commit 0b58561003
10 changed files with 16 additions and 12 deletions

View file

@ -40,11 +40,11 @@ use crate::{
connect::{DnsConfig, ServerConnector, ServerConnectorError},
error::{Error, ProtocolError},
proto::{Packet, XmppStream},
AsyncClient, Component,
Client, Component,
};
/// Client that connects over StartTls
pub type StartTlsClient = AsyncClient<StartTlsServerConnector>;
pub type StartTlsClient = Client<StartTlsServerConnector>;
/// Component that connects over StartTls
pub type StartTlsComponent = Component<StartTlsServerConnector>;