diff options
author | Kim Alvefur <zash@zash.se> | 2023-03-23 13:36:52 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-03-23 13:36:52 +0100 |
commit | f68336b96e0d843511bb1bd3fdac8bba2fe4573a (patch) | |
tree | a54111914e081293e50b846e7f0d9654e885c2ed /teal-src/net/http.d.tl | |
parent | 738df041ac3965496e9247acc95d80f84d30b2b5 (diff) | |
download | prosody-f68336b96e0d843511bb1bd3fdac8bba2fe4573a.tar.gz prosody-f68336b96e0d843511bb1bd3fdac8bba2fe4573a.zip |
teal: Move into prosody namespace
Diffstat (limited to 'teal-src/net/http.d.tl')
-rw-r--r-- | teal-src/net/http.d.tl | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/teal-src/net/http.d.tl b/teal-src/net/http.d.tl deleted file mode 100644 index 9135ec12..00000000 --- a/teal-src/net/http.d.tl +++ /dev/null @@ -1,86 +0,0 @@ -local Promise = require "util.promise".Promise; - -local record sslctx -- from LuaSec -end - -local record lib - - enum http_method - "GET" - "HEAD" - "POST" - "PUT" - "OPTIONS" - "DELETE" - -- etc? - end - - record http_client_options - sslctx : sslctx - end - - record http_options - id : string - onlystatus : boolean - body : string - method : http_method - headers : { string : string } - insecure : boolean - suppress_errors : boolean - streaming_handler : function - suppress_url : boolean - sslctx : sslctx - end - - record http_request - host : string - port : string - enum scheme - "http" - "https" - end - scheme : scheme - url : string - userinfo : string - path : string - - method : http_method - headers : { string : string } - - insecure : boolean - suppress_errors : boolean - streaming_handler : function - http : http_client - time : integer - id : string - callback : http_callback - end - - record http_response - end - - type http_callback = function (string, number, http_response, http_request) - - record http_client - options : http_client_options - request : function (http_client, string, http_options, http_callback) - end - - request : function (string, http_options, http_callback) : Promise, string - default : http_client - new : function (http_client_options) : http_client - events : table - -- COMPAT - urlencode : function (string) : string - urldecode : function (string) : string - formencode : function ({ string : string }) : string - formdecode : function (string) : { string : string } - destroy_request : function (http_request) - - enum available_features - "sni" - end - features : { available_features : boolean } -end - -return lib |