diff mod_pubsub_mqtt/mqtt.lib.lua @ 1343:7dbde05b48a9

all the things: Remove trailing whitespace
author Florian Zeitz <florob@babelmonkeys.de>
date Tue, 11 Mar 2014 18:44:01 +0100
parents e0d97eb52ab8
children d2a84e6aed2b
line wrap: on
line diff
--- a/mod_pubsub_mqtt/mqtt.lib.lua	Mon Mar 10 08:22:58 2014 +0000
+++ b/mod_pubsub_mqtt/mqtt.lib.lua	Tue Mar 11 18:44:01 2014 +0100
@@ -44,7 +44,7 @@
 	packet.dup = bit.band(header, 0x08) == 0x08;
 	packet.qos = bit.rshift(bit.band(header, 0x06), 1);
 	packet.retain = bit.band(header, 0x01) == 0x01;
-	
+
 	-- Get length
 	local length, multiplier = 0, 1;
 	repeat
@@ -129,7 +129,7 @@
 		end
 	end
 	local header = string.char(bit.lshift(type_num, 4));
-	
+
 	if packet.type == "publish" then
 		local topic = packet.topic or "";
 		packet.data = string.char(bit.band(#topic, 0xff00), bit.band(#topic, 0x00ff))..topic..packet.data;
@@ -140,7 +140,7 @@
 		end
 		packet.data = table.concat(t);
 	end
-	
+
 	-- Get length
 	local length = #(packet.data or "");
 	repeat
@@ -151,7 +151,7 @@
 		end
 		header = header..string.char(digit); -- FIXME: ...
 	until length <= 0;
-	
+
 	return header..(packet.data or "");
 end