summaryrefslogtreecommitdiff
path: root/xmpp/streams.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-07-03 22:17:15 +0200
committerxengineering <me@xengineering.eu>2023-07-03 22:17:15 +0200
commit2fade1039c1842f08b30da5c95b5542b57e38ec6 (patch)
tree329ae6641f6b00f1e0cbf65321ac44b90d0c15e4 /xmpp/streams.go
parentcf520b079743ec95d085a439d00b841c253c564a (diff)
downloadlimox-2fade1039c1842f08b30da5c95b5542b57e38ec6.tar
limox-2fade1039c1842f08b30da5c95b5542b57e38ec6.tar.zst
limox-2fade1039c1842f08b30da5c95b5542b57e38ec6.zip
Move xml.Encoder to session struct
The encoderDecoder sub-struct of the session struct should be removed in little steps. This is the first one.
Diffstat (limited to 'xmpp/streams.go')
-rw-r--r--xmpp/streams.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmpp/streams.go b/xmpp/streams.go
index 87df86a..5ba4c1d 100644
--- a/xmpp/streams.go
+++ b/xmpp/streams.go
@@ -47,7 +47,7 @@ func openStream(s *session) xml.EndElement {
}
end := start.End()
- err := s.ed.encodeToken(start)
+ err := s.encodeToken(start)
if err != nil {
log.Println("Could not encode stream start!")
}
@@ -86,7 +86,7 @@ func syncStreams(s *session) {
}
func closeStream(s *session, end xml.EndElement) {
- err := s.ed.encodeToken(end)
+ err := s.encodeToken(end)
if err != nil {
log.Println("Could not encode stream end!")
}