tokio-xmpp: rename OneshotClient to SimpleClient
This commit is contained in:
parent
3e2b51f148
commit
eb13634571
4 changed files with 4 additions and 4 deletions
|
|
@ -23,7 +23,7 @@ use auth::auth;
|
|||
mod bind;
|
||||
use bind::bind;
|
||||
|
||||
pub mod oneshot_client;
|
||||
pub mod simple_client;
|
||||
|
||||
pub const NS_XMPP_SASL: &str = "urn:ietf:params:xml:ns:xmpp-sasl";
|
||||
pub const NS_XMPP_BIND: &str = "urn:ietf:params:xml:ns:xmpp-bind";
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ use crate::{Error, ProtocolError};
|
|||
use super::auth::auth;
|
||||
use super::bind::bind;
|
||||
|
||||
/// XMPP client connection and state
|
||||
/// A simple XMPP client connection
|
||||
///
|
||||
/// This implements the `futures` crate's [`Stream`](#impl-Stream) and
|
||||
/// [`Sink`](#impl-Sink<Packet>) traits.
|
||||
Loading…
Reference in a new issue