summaryrefslogtreecommitdiff
path: root/xmpp/routing.go
diff options
context:
space:
mode:
Diffstat (limited to 'xmpp/routing.go')
-rw-r--r--xmpp/routing.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/xmpp/routing.go b/xmpp/routing.go
index a9dd8b6..5cd2040 100644
--- a/xmpp/routing.go
+++ b/xmpp/routing.go
@@ -9,6 +9,10 @@ func route(s *xml.StartElement, d *xml.Decoder, c chan<- any) {
switch (*s).Name {
case xml.Name{`http://etherx.jabber.org/streams`, `features`}:
parse(streamFeatures{}, s, d, c)
+ case xml.Name{`urn:ietf:params:xml:ns:xmpp-sasl`, `success`}:
+ parse(saslSuccess{}, s, d, c)
+ case xml.Name{`jabber:client`, `iq`}:
+ parse(iqResponse{}, s, d, c)
default:
d.Skip()
}
@@ -27,6 +31,10 @@ func handle(s *session, element any) {
switch t := element.(type) {
case streamFeatures:
handleStreamFeatures(s, t)
+ case saslSuccess:
+ handleSaslSuccess(s)
+ case iqResponse:
+ handleIqResponse(s, t)
default:
log.Printf("Unknown parsed element: %v", t)
}