go-xmpp/stanza/starttls.go
2019-07-15 12:22:21 +02:00

15 lines
288 B
Go

package stanza
import (
"encoding/xml"
)
// Used during stream initiation / session establishment
type TLSProceed struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-tls proceed"`
}
type tlsFailure struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-tls failure"`
}