File

teal-src/util/http.d.tl @ 12510:cd3b5912c9a3 0.12

net.unbound: Adjust log level of error to error to error This error is an error, therefore it should be at the error level
author Kim Alvefur <zash@zash.se>
date Mon, 16 May 2022 14:51:01 +0200
parent 11432:113f3912c7cb
line wrap: on
line source

local record lib
	urlencode : function (s : string) : string 
	urldecode : function (s : string) : string 
	formencode : function (f : { string : string }) : string 
	formdecode : function (s : string) : { string : string } 
	contains_token : function (field : string, token : string) : boolean 
	normalize_path : function (path : string) : string 
end
return lib