You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lua-uri/uri/https.lua

10 lines
204 B

local M = { _NAME = "uri.https" }
local Util = require "uri._util"
local Http = require "uri.http"
Util.subclass_of(M, Http)
function M.default_port () return 443 end
return M
-- vi:ts=4 sw=4 expandtab