the example should just use SCRAM-SHA-1
This commit is contained in:
parent
91df20948a
commit
cdccd6be3f
1 changed files with 2 additions and 4 deletions
|
@ -4,7 +4,7 @@ use xmpp::jid::Jid;
|
|||
use xmpp::client::ClientBuilder;
|
||||
use xmpp::plugins::messaging::{MessagingPlugin, MessageEvent};
|
||||
use xmpp::plugins::presence::{PresencePlugin, Show};
|
||||
use xmpp::sasl::mechanisms::{Scram, Sha1, Plain};
|
||||
use xmpp::sasl::mechanisms::{Scram, Sha1};
|
||||
|
||||
use std::env;
|
||||
|
||||
|
@ -15,9 +15,7 @@ fn main() {
|
|||
client.register_plugin(PresencePlugin::new());
|
||||
let pass = env::var("PASS").unwrap();
|
||||
let name = jid.node.clone().expect("JID requires a node");
|
||||
client.connect(&mut Plain::new(name, pass)).unwrap();
|
||||
// Replace with this line if you want SCRAM-SHA-1 authentication:
|
||||
// client.connect(&mut Scram::<Sha1>::new(name, pass).unwrap()).unwrap();
|
||||
client.connect(&mut Scram::<Sha1>::new(name, pass).unwrap()).unwrap();
|
||||
client.bind().unwrap();
|
||||
client.plugin::<PresencePlugin>().set_presence(Show::Available, None).unwrap();
|
||||
loop {
|
||||
|
|
Loading…
Reference in a new issue