sum7
/
yaja
Archived
1
0
Fork 0
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.
yaja/messages/namespaces.go

34 lines
860 B
Go
Raw Normal View History

2017-12-14 21:30:07 +01:00
package messages
const (
2018-02-13 20:05:18 +01:00
// RFC 6120 - A.1 Stream Namespace
2017-12-14 21:30:07 +01:00
NSStream = "http://etherx.jabber.org/streams"
2018-02-13 20:05:18 +01:00
// RFC 6120 - A.2 Stream Error Namespace
NSStreamError = "urn:ietf:params:xml:ns:xmpp-streams"
// RFC 6120 - A.3 StartTLS Namespace
NSStartTLS = "urn:ietf:params:xml:ns:xmpp-tls"
// RFC 6120 - A.4 SASL Namespace
2017-12-14 21:30:07 +01:00
NSSASL = "urn:ietf:params:xml:ns:xmpp-sasl"
2018-02-13 20:05:18 +01:00
// RFC 6120 - A.5 Client Namespace
NSClient = "jabber:client"
// RFC 6120 - A.6 Server Namespace
NSServer = "jabber:server"
// RFC 6120 - A.7 Resource Binding Namespace
2017-12-14 21:30:07 +01:00
NSBind = "urn:ietf:params:xml:ns:xmpp-bind"
2018-02-13 20:05:18 +01:00
// RFC 6120 - A.8 Stanza Error Binding Namespace
NSStanzaError = "urn:ietf:params:xml:ns:xmpp-stanzas"
2017-12-14 21:30:07 +01:00
NSIQRegister = "jabber:iq:register"
NSFeaturesIQRegister = "http://jabber.org/features/iq-register"
NSDisco = "http://jabber.org/protocol/disco#info"
2017-12-14 21:30:07 +01:00
)