Documentation ¶
Overview ¶
Package stream contains internal stream parsing and handling behavior.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( ErrUnknownStreamElement = errors.New("xmpp: unknown stream level element") ErrUnexpectedRestart = errors.New("xmpp: unexpected stream restart") )
Erorrs related to stream handling
var ( DefaultVersion = Version{1, 0} // The default version to send. EmptyVersion = Version{0, 9} // The value of a missing version attribute. )
Common XMPP versions.
Functions ¶
func Reader ¶
func Reader(r xml.TokenReader) xml.TokenReader
Reader returns a token reader that handles stream level tokens on an already established stream.
Types ¶
type Info ¶
type Info struct {
// contains filtered or unexported fields
}
Info contains metadata extracted from a stream start token.
func Expect ¶
Expect reads a token from d and expects that it will be a new stream start token. If not, an error is returned. It then handles feature negotiation for the new stream. If an XML header is discovered instead, it is skipped.
func Send ¶
func Send(rw io.ReadWriter, s2s bool, version Version, lang string, location, origin, id string) (Info, error)
Send sends a new XML header followed by a stream start element on the given io.Writer. We don't use an xml.Encoder both because Go's standard library xml package really doesn't like the namespaced stream:stream attribute and because we can guarantee well-formedness of the XML with a print in this case and printing is much faster than encoding. Afterwards, clear the StreamRestartRequired bit and set the output stream information.
type Version ¶
Version is a version of XMPP.
func MustParseVersion ¶
MustParseVersion parses a version string and panics if an error is returned.
func ParseVersion ¶
ParseVersion parses a string of the form "Major.Minor" into a Version struct or returns an error.
func (Version) Less ¶
Less compares the major and minor version numbers, returning true if a is less than b.
func (Version) MarshalXMLAttr ¶
MarshalXMLAttr satisfies the MarshalerAttr interface and marshals the version as an XML attribute using its string representation.