2019-06-26 08:14:52 -07:00
|
|
|
package stanza
|
2016-01-06 07:51:12 -08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
)
|
|
|
|
|
2019-06-10 07:27:52 -07:00
|
|
|
// Used during stream initiation / session establishment
|
2019-06-26 08:14:52 -07:00
|
|
|
type TLSProceed struct {
|
2016-01-06 07:51:12 -08:00
|
|
|
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"`
|
|
|
|
}
|