mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.stun: Factor out address unpack, an operation common to multiple attributes
This commit is contained in:
parent
6e9d71259c
commit
ac06bd8c97
1 changed files with 12 additions and 11 deletions
23
net/stun.lua
23
net/stun.lua
|
@ -207,11 +207,13 @@ function packet_methods:get_attribute(attr_type)
|
|||
end
|
||||
end
|
||||
|
||||
function packet_methods:get_mapped_address()
|
||||
local data = self:get_attribute("mapped-address");
|
||||
if not data then return; end
|
||||
function packet_methods:_unpack_address(data, xor)
|
||||
local family, port = struct.unpack("x>BI2", data);
|
||||
local addr = data:sub(5);
|
||||
if xor then
|
||||
port = bit32.bxor(port, 0x2112);
|
||||
addr = sxor(addr, magic_cookie..self.transaction_id);
|
||||
end
|
||||
return {
|
||||
family = addr_families[family] or "unknown";
|
||||
port = port;
|
||||
|
@ -219,17 +221,16 @@ function packet_methods:get_mapped_address()
|
|||
};
|
||||
end
|
||||
|
||||
|
||||
function packet_methods:get_mapped_address()
|
||||
local data = self:get_attribute("mapped-address");
|
||||
if not data then return; end
|
||||
return self:_unpack_address(data, false);
|
||||
end
|
||||
function packet_methods:get_xor_mapped_address()
|
||||
local data = self:get_attribute("xor-mapped-address");
|
||||
if not data then return; end
|
||||
local family, port = struct.unpack("x>BI2", data);
|
||||
local addr = sxor(data:sub(5), magic_cookie..self.transaction_id);
|
||||
return {
|
||||
family = addr_families[family] or "unknown";
|
||||
port = bit32.bxor(port, 0x2112);
|
||||
address = net.ntop(addr);
|
||||
address_raw = data:sub(5);
|
||||
};
|
||||
return self:_unpack_address(data, true);
|
||||
end
|
||||
|
||||
function packet_methods:add_message_integrity(key)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue