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/rtsp.lua

10 lines
209 B

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