net.http: Re-expose destroy_request() function 0.11
authorMatthew Wild <mwild1@gmail.com>
Sat, 08 Aug 2020 13:11:11 +0100
branch0.11
changeset 11019 355eae2f9ba8
parent 11011 1d8e1f7a587c
child 11020 5176d9f727f6
net.http: Re-expose destroy_request() function This was accidentally turned private in 647adfd8f738 as part of refactoring for Lua 5.2+.
net/http.lua
--- a/net/http.lua	Fri Jul 10 13:00:02 2020 +0100
+++ b/net/http.lua	Sat Aug 08 13:11:11 2020 +0100
@@ -302,4 +302,5 @@
 	urldecode = util_http.urldecode;
 	formencode = util_http.formencode;
 	formdecode = util_http.formdecode;
+	destroy_request = destroy_request;
 };