Comparison

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
parent 10994:e2ce067bb59a
child 11016:5176d9f727f6
comparison
equal deleted inserted replaced
11007:1d8e1f7a587c 11015:355eae2f9ba8
300 -- COMPAT 300 -- COMPAT
301 urlencode = util_http.urlencode; 301 urlencode = util_http.urlencode;
302 urldecode = util_http.urldecode; 302 urldecode = util_http.urldecode;
303 formencode = util_http.formencode; 303 formencode = util_http.formencode;
304 formdecode = util_http.formdecode; 304 formdecode = util_http.formdecode;
305 destroy_request = destroy_request;
305 }; 306 };