diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-08-08 13:11:11 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-08-08 13:11:11 +0100 |
commit | 2e03c08945e5d12ee2a49995ea90c4d2c8aff854 (patch) | |
tree | 5a4e36d71ef26f3a0647af8859377af4821bd3bb /net | |
parent | 41af73564b474fb57851ad087ffbd408041349d5 (diff) | |
download | prosody-2e03c08945e5d12ee2a49995ea90c4d2c8aff854.tar.gz prosody-2e03c08945e5d12ee2a49995ea90c4d2c8aff854.zip |
net.http: Re-expose destroy_request() function
This was accidentally turned private in 647adfd8f738 as part of refactoring
for Lua 5.2+.
Diffstat (limited to 'net')
-rw-r--r-- | net/http.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http.lua b/net/http.lua index 0adac26c..14107bf4 100644 --- a/net/http.lua +++ b/net/http.lua @@ -302,4 +302,5 @@ return { urldecode = util_http.urldecode; formencode = util_http.formencode; formdecode = util_http.formdecode; + destroy_request = destroy_request; }; |