diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/rtsp.pm')
-rwxr-xr-x | Master/tlpkg/tlperl/lib/URI/rtsp.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/rtsp.pm b/Master/tlpkg/tlperl/lib/URI/rtsp.pm new file mode 100755 index 00000000000..982ca5ebf1e --- /dev/null +++ b/Master/tlpkg/tlperl/lib/URI/rtsp.pm @@ -0,0 +1,8 @@ +package URI::rtsp; + +require URI::http; +@ISA=qw(URI::http); + +sub default_port { 554 } + +1; |