diff options
author | Matthew Wild <mwild1@gmail.com> | 2022-03-05 11:00:08 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2022-03-05 11:00:08 +0000 |
commit | 6e9d71259ca9d8904478aba47d42b7e217fce969 (patch) | |
tree | 3ee374a7ab8eb121fe7b398d3ec9af6dcf1220c4 /net | |
parent | ab77f7fcdb937d996988f09cbeeaa456ab83aa58 (diff) | |
download | prosody-6e9d71259ca9d8904478aba47d42b7e217fce969.tar.gz prosody-6e9d71259ca9d8904478aba47d42b7e217fce969.zip |
net.stun: Name some more attributes from TURN
Diffstat (limited to 'net')
-rw-r--r-- | net/stun.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/stun.lua b/net/stun.lua index 3b1d227c..530b4e3b 100644 --- a/net/stun.lua +++ b/net/stun.lua @@ -86,6 +86,9 @@ local attributes = { -- TURN ["requested-transport"] = 0x0019; + ["xor-peer-address"] = 0x0012; + ["data"] = 0x0013; + ["xor-relayed-address"] = 0x0016; }; local attribute_lookup = lookup_table(attributes); |