diff net/http.lua @ 11015:355eae2f9ba8 0.11

net.http: Re-expose destroy_request() function This was accidentally turned private in 647adfd8f738 as part of refactoring for Lua 5.2+.
author Matthew Wild <mwild1@gmail.com>
date Sat, 08 Aug 2020 13:11:11 +0100
parents e2ce067bb59a
children 5176d9f727f6
line wrap: on
line diff
--- 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;
 };