diff options
author | xengineering <me@xengineering.eu> | 2023-06-28 10:28:44 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-06-28 10:28:44 +0200 |
commit | 9afa580f3f3207ac449be86c1a305cb716b77f76 (patch) | |
tree | 93429d634b17291fe970dc4ae32e84ec18f7bef1 /xmpp/sasl.go | |
parent | c600e10faf59e96be6b0ad440bd4c5d8cc13d38a (diff) | |
parent | 4b4fe72fdb100df492b1df1960775ff8b98d6dfc (diff) | |
download | limox-9afa580f3f3207ac449be86c1a305cb716b77f76.tar limox-9afa580f3f3207ac449be86c1a305cb716b77f76.tar.zst limox-9afa580f3f3207ac449be86c1a305cb716b77f76.zip |
Merge branch 'stream-pair'
This adds the source file xmpp/stream_pair.go with the central function
runStreamPair(). This function is called once by a session and could
call itself. That way an initial stream and nested streams are
implemented and closed via return and defer.
Diffstat (limited to 'xmpp/sasl.go')
-rw-r--r-- | xmpp/sasl.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp/sasl.go b/xmpp/sasl.go index 1cb3670..8687782 100644 --- a/xmpp/sasl.go +++ b/xmpp/sasl.go @@ -1,8 +1,8 @@ package xmpp import ( - "encoding/xml" "encoding/base64" + "encoding/xml" "log" ) |