This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
2018-02-14 18:49:26 +01:00
|
|
|
package xmppiq
|
|
|
|
|
|
|
|
const (
|
2018-02-15 20:56:04 +01:00
|
|
|
// NSDiscoInfo implements XEP 0030: Service Discovery - 11.1 disco#info
|
|
|
|
NSDiscoInfo = "http://jabber.org/protocol/disco#info"
|
2018-02-14 18:49:26 +01:00
|
|
|
|
2018-02-15 20:56:04 +01:00
|
|
|
// NSDiscoItems implements XEP 0030: Service Discovery - 11.2 disco#items
|
|
|
|
NSDiscoItems = "http://jabber.org/protocol/disco#items"
|
2018-02-14 18:49:26 +01:00
|
|
|
|
2018-02-15 20:56:04 +01:00
|
|
|
// NSPrivateXMLStorage implements XEP-0049: Private XML Storage - 7
|
|
|
|
NSPrivateXMLStorage = "jabber:iq:private"
|
2018-02-14 18:49:26 +01:00
|
|
|
|
2018-02-15 20:56:04 +01:00
|
|
|
// NSVCard implements XEP-0054: vcard-temp - 14 (WIP)
|
|
|
|
NSVCard = "vcard-temp"
|
2018-02-14 18:49:26 +01:00
|
|
|
|
2018-02-15 20:56:04 +01:00
|
|
|
// NSVersion implements XEP-0092: Software Version - 4
|
|
|
|
NSVersion = "jabber:iq:version"
|
|
|
|
|
|
|
|
// NSPing implements XEP-0199: XMPP Ping - 10
|
|
|
|
NSPing = "urn:xmpp:ping"
|
|
|
|
|
|
|
|
// NSRegister implements XEP-0077: In-Band Registration - 14.1 jabber:iq:register
|
|
|
|
NSRegister = "jabber:iq:register"
|
|
|
|
|
|
|
|
// NSFeatureRegister implements XEP-0077: In-Band Registration - 14.2 Stream Feature
|
|
|
|
NSFeatureRegister = "http://jabber.org/features/iq-register"
|
2018-02-14 18:49:26 +01:00
|
|
|
)
|