summaryrefslogtreecommitdiff
path: root/lib/URI/rtsp.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/URI/rtsp.pm')
-rw-r--r--lib/URI/rtsp.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/URI/rtsp.pm b/lib/URI/rtsp.pm
new file mode 100644
index 0000000..fa82efc
--- /dev/null
+++ b/lib/URI/rtsp.pm
@@ -0,0 +1,12 @@
+package URI::rtsp;
+
+use strict;
+use warnings;
+
+our $VERSION = "1.69";
+
+use parent 'URI::http';
+
+sub default_port { 554 }
+
+1;