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/xmpp/global.go

25 lines
702 B
Go

package xmpp
import "encoding/xml"
// Text implements RFC 6120 - part of A.2 Stream Error Namespace, A.4 SASL Namespace and A.8 Stanza Error Namespace
type Text struct {
// `xml:"urn:ietf:params:xml:ns:xmpp-streams text"`
// `xml:"urn:ietf:params:xml:ns:xmpp-sasl text"`
// `xml:"urn:ietf:params:xml:ns:xmpp-stanzas text"`
XMLName xml.Name `xml:"text"`
Lang string `xml:"lang,attr,omitempty"`
Body string `xml:",innerxml"`
}
// XMLElement is for Unmarshal undefined structs a fallback - any hasn't matched element
type XMLElement struct {
XMLName xml.Name
InnerXML string `xml:",innerxml"`
}
// Delay implements which XEP ?
type Delay struct {
Stamp string `xml:"stamp,attr"`
}