Bugfix: Do not reopen stream if starttls was not enabled.

disco_info_form
Mickael Remond 8 years ago
parent ff334ba729
commit 1b90d5d2ef

@ -38,7 +38,9 @@ func NewSession(conn net.Conn, o Options) (net.Conn, *Session, error) {
// starttls
var tlsConn net.Conn
tlsConn = s.startTlsIfSupported(conn, o.parsedJid.domain)
s.reset(conn, tlsConn, o)
if s.TlsEnabled {
s.reset(conn, tlsConn, o)
}
// auth
s.auth(o)

Loading…
Cancel
Save