net/dns.lua
changeset 2619 04158baefa34
parent 2578 61e5eff54415
child 2620 481c6724818f
equal deleted inserted replaced
2618:b8f6aa70d019 2619:04158baefa34
   721 
   721 
   722 	local response;
   722 	local response;
   723 	for i,sock in pairs(rset) do
   723 	for i,sock in pairs(rset) do
   724 
   724 
   725 		if self.socketset[sock] then
   725 		if self.socketset[sock] then
   726 			local packet = sock.receive();
   726 			local packet = sock:receive();
   727 			if packet then
   727 			if packet then
   728 				response = self:decode(packet);
   728 				response = self:decode(packet);
   729 				if response and self.active[response.header.id]
   729 				if response and self.active[response.header.id]
   730 					and self.active[response.header.id][response.question.raw] then
   730 					and self.active[response.header.id][response.question.raw] then
   731 					--print('received response');
   731 					--print('received response');