diff options
author | xengineering <me@xengineering.eu> | 2023-06-27 16:43:45 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-06-27 16:45:07 +0200 |
commit | c600e10faf59e96be6b0ad440bd4c5d8cc13d38a (patch) | |
tree | ca584829183369178cf67c27dc7f5c1c1b0e86d2 /xmpp/session.go | |
parent | 35a9c27783524a035ab6545061f5ecd5fdee6ea7 (diff) | |
download | limox-c600e10faf59e96be6b0ad440bd4c5d8cc13d38a.tar limox-c600e10faf59e96be6b0ad440bd4c5d8cc13d38a.tar.zst limox-c600e10faf59e96be6b0ad440bd4c5d8cc13d38a.zip |
xmpp: Re-introduce SASL authentication
Diffstat (limited to 'xmpp/session.go')
-rw-r--r-- | xmpp/session.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xmpp/session.go b/xmpp/session.go index 88a01ae..e0819da 100644 --- a/xmpp/session.go +++ b/xmpp/session.go @@ -13,6 +13,7 @@ type SessionShouldDisconnect struct{} type session struct { jid string + pwd string in chan any out chan<- any transport *tls.Conn @@ -25,6 +26,7 @@ func StartSession(out chan<- any, jid string, pwd string) (in chan<- any) { s := session{} s.jid = jid + s.pwd = pwd s.in = make(chan any) s.out = out s.rx = make(chan xml.Token, 0) @@ -50,6 +52,8 @@ func (s *session) run() { s.openStream() defer s.closeStreams() + s.sasl() + s.out <- SessionConnect{} for { |