Documentation ¶
Overview ¶
Package oob implements XEP-0066: Out of Band Data.
Index ¶
Constants ¶
View Source
const ( NS = `jabber:x:oob` NSQuery = `jabber:iq:oob` )
OOB namespaces provided as a convenience.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Data ¶
type Data struct { XMLName xml.Name `xml:"jabber:x:oob x"` URL string `xml:"url"` Desc string `xml:"desc,omitempty"` }
Data represents an OOB data node that might be placed in a message or presence stanza.
type IQ ¶
IQ represents an OOB data query; for instance:
<iq type='set' from='feste@example.net/asegasd' to='malvolio@jabber.org/apkjase' id='asiepjg'> <query xmlns='jabber:iq:oob'> <url>https://xmpp.org/images/promo/xmpp_server_guide_2017.pdf</url> <desc>XMPP Server Setup Guide 2017</desc> </query> </iq>
Click to show internal directories.
Click to hide internal directories.