summaryrefslogtreecommitdiff
path: root/xmpp.go
AgeCommit message (Collapse)Author
2023-05-10Implement stream start with xml.StartElementxengineering
The currently used method with struct marshalling and string cutting is just a workaround.
2023-05-09Implement logToken()xengineering
This is a generic XML token logging function which can be used for sent and received XML tokens.
2023-05-04Implement concurrent send / receivexengineering
LimoX should receive and send XML elements from and to the server concurrently to avoid blocking.
2023-05-03Implement XML encodingxengineering
The <stream> element is the first to encode and is added with this commit.
2023-05-03Switch to direct TLS with hard-coded portxengineering
This is not compliant with the XMPP specification but allows to develop quite fast with production servers.
2023-04-18Split Go code into multiple filesxengineering