blob: 0c4c8bc3792fe2488ff15a032afb5fcfb7c630ff (
plain)
1
2
3
4
5
6
7
8
9
|
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
|