go-xmpp/packet.go

19 lines
438 B
Go
Raw Normal View History

package xmpp // import "gosrc.io/xmpp"
2018-01-13 17:50:17 +00:00
type Packet interface {
Name() string
}
2018-01-13 16:54:07 +00:00
// PacketAttrs represents the common structure for base XMPP packets.
type PacketAttrs struct {
Id string `xml:"id,attr,omitempty"`
From string `xml:"from,attr,omitempty"`
To string `xml:"to,attr,omitempty"`
Type string `xml:"type,attr,omitempty"`
Lang string `xml:"lang,attr,omitempty"`
}
type packetFormatter interface {
XMPPFormat() string
}