verse.plugins.tls: self -> stream

Tue, 11 May 2010 23:19:01 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Tue, 11 May 2010 23:19:01 +0100
changeset 67
8154b72591d5
parent 66
cd66229bdd7f
child 68
1789dac44823

verse.plugins.tls: self -> stream

plugins/tls.lua file | annotate | diff | comparison | revisions
--- 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

mercurial