2019-06-26 08:14:52 -07:00
|
|
|
package stanza
|
2016-01-06 07:51:12 -08:00
|
|
|
|
2019-10-18 11:29:54 -07:00
|
|
|
import "encoding/xml"
|
|
|
|
|
|
|
|
// Start of stream
|
|
|
|
// Reference: XMPP Core stream open
|
|
|
|
// https://tools.ietf.org/html/rfc6120#section-4.2
|
|
|
|
type Stream struct {
|
|
|
|
XMLName xml.Name `xml:"http://etherx.jabber.org/streams stream"`
|
|
|
|
From string `xml:"from,attr"`
|
2019-11-28 08:15:15 -08:00
|
|
|
To string `xml:"to,attr"`
|
2019-10-18 11:29:54 -07:00
|
|
|
Id string `xml:"id,attr"`
|
|
|
|
Version string `xml:"version,attr"`
|
2018-01-13 09:50:17 -08:00
|
|
|
}
|
2019-12-23 00:04:18 -08:00
|
|
|
|
|
|
|
const StreamClose = "</stream:stream>"
|