Software /
code /
verse
Changeset
67:8154b72591d5
verse.plugins.tls: self -> stream
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 11 May 2010 23:19:01 +0100 |
parents | 66:cd66229bdd7f |
children | 68:1789dac44823 |
files | plugins/tls.lua |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/tls.lua Tue May 11 23:18:11 2010 +0100 +++ b/plugins/tls.lua Tue May 11 23:19:01 2010 +0100 @@ -8,9 +8,9 @@ stream:debug("Negotiating TLS..."); stream:send(st.stanza("starttls", { xmlns = xmlns_tls })); return true; - elseif not stream.conn.starttls and not self.secure then + elseif not stream.conn.starttls and not stream.secure then stream:warn("SSL libary (LuaSec) not loaded, so TLS not available"); - elseif not self.secure then + elseif not stream.secure then stream:debug("Server doesn't offer TLS :("); end end @@ -22,7 +22,7 @@ end local function handle_status(new_status) if new_status == "ssl-handshake-complete" then - self.secure = true; + stream.secure = true; stream:debug("Re-opening stream..."); stream:reopen(); end