summaryrefslogtreecommitdiff
path: root/xmpp/streams.go
diff options
context:
space:
mode:
Diffstat (limited to 'xmpp/streams.go')
-rw-r--r--xmpp/streams.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/xmpp/streams.go b/xmpp/streams.go
index b7cde3e..3aca8a2 100644
--- a/xmpp/streams.go
+++ b/xmpp/streams.go
@@ -67,14 +67,3 @@ func iqHandler(s *session, e []xml.Token) {
type streamFeatures struct {
SaslMechanisms []string `xml:"mechanisms>mechanism"`
}
-
-func streamFeaturesHandler(s *xml.StartElement, d *xml.Decoder, c chan<- any) {
- e := streamFeatures{}
-
- err := d.DecodeElement(&e, s)
- if err != nil {
- log.Printf("Could not decode stream features: %v\n", err)
- } else {
- c <- e
- }
-}