Add support for Out of Band markers (OOB) from XEP-0066

disco_info_form
Mickael Remond 5 years ago committed by Mickaël Rémond
parent 67eaed98b6
commit 57ed387f4f

@ -0,0 +1,19 @@
package xmpp // import "gosrc.io/xmpp"
import "encoding/xml"
/*
Support for:
- XEP-0066 - Out of Band Data: https://xmpp.org/extensions/xep-0066.html
*/
type OOB struct {
MsgExtension
XMLName xml.Name `xml:"jabber:x:oob x"`
URL string `xml:"url"`
Desc string `xml:"desc,omitempty"`
}
func init() {
typeRegistry.MapExtension(PKTMessage, xml.Name{"jabber:x:oob", "x"}, OOB{})
}
Loading…
Cancel
Save