xmpp.go
changeset 44 dd6f5cc27d52
parent 42 f6bb47ca12f2
child 45 abf958bcc201
equal deleted inserted replaced
43:82e90aa25dad 44:dd6f5cc27d52
    22 
    22 
    23 const (
    23 const (
    24 	// Version of RFC 3920 that we implement.
    24 	// Version of RFC 3920 that we implement.
    25 	Version = "1.0"
    25 	Version = "1.0"
    26 
    26 
    27 	// BUG(cjyar) These should be public.
       
    28 	// Various XML namespaces.
    27 	// Various XML namespaces.
    29 	NsStreams = "urn:ietf:params:xml:ns:xmpp-streams"
    28 	NsStreams = "urn:ietf:params:xml:ns:xmpp-streams"
    30 	NsStream = "http://etherx.jabber.org/streams"
    29 	NsStream = "http://etherx.jabber.org/streams"
    31 	NsTLS = "urn:ietf:params:xml:ns:xmpp-tls"
    30 	NsTLS = "urn:ietf:params:xml:ns:xmpp-tls"
    32 	NsSASL = "urn:ietf:params:xml:ns:xmpp-sasl"
    31 	NsSASL = "urn:ietf:params:xml:ns:xmpp-sasl"