summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/URI/rsync.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/rsync.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/URI/rsync.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/rsync.pm b/Master/tlpkg/tlperl/lib/URI/rsync.pm
new file mode 100644
index 00000000000..160d9d0c065
--- /dev/null
+++ b/Master/tlpkg/tlperl/lib/URI/rsync.pm
@@ -0,0 +1,12 @@
+package URI::rsync; # http://rsync.samba.org/
+
+# rsync://[USER@]HOST[:PORT]/SRC
+
+require URI::_server;
+require URI::_userpass;
+
+@ISA=qw(URI::_server URI::_userpass);
+
+sub default_port { 873 }
+
+1;