diff options
author | xengineering <me@xengineering.eu> | 2023-06-30 13:21:34 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-06-30 13:21:34 +0200 |
commit | f3aa8bec6e7d91b84a73688191751f9723c008a8 (patch) | |
tree | 2142243f2cd07eec012e5797122b41a247d71d0e /xmpp/sasl.go | |
parent | c87ed02bb55a652b8908c336c3afd5635afdc1a7 (diff) | |
download | limox-f3aa8bec6e7d91b84a73688191751f9723c008a8.tar limox-f3aa8bec6e7d91b84a73688191751f9723c008a8.tar.zst limox-f3aa8bec6e7d91b84a73688191751f9723c008a8.zip |
Add SASL success handler
Diffstat (limited to 'xmpp/sasl.go')
-rw-r--r-- | xmpp/sasl.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xmpp/sasl.go b/xmpp/sasl.go index e460f5e..62c312f 100644 --- a/xmpp/sasl.go +++ b/xmpp/sasl.go @@ -64,3 +64,6 @@ func hasSaslPlain(e []xml.Token) bool { return false } + +func saslSuccessHandler(s *session, e []xml.Token) { +} |