Software /
code /
prosody
Comparison
net/dns.lua @ 2619:04158baefa34
net.dns: Update for new socket API
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 12 Feb 2010 15:02:57 +0000 |
parent | 2578:61e5eff54415 |
child | 2620:481c6724818f |
comparison
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'); |