teal-src/util/http.d.tl
author Kim Alvefur <zash@zash.se>
Fri, 12 Nov 2021 22:34:04 +0100
changeset 11906 98fd531594bd
parent 11436 113f3912c7cb
permissions -rw-r--r--
util.prosodyctl.shell: Bring back banner set from config! I miss my custom ANSI-colored greeting!

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