diff options
Diffstat (limited to 'Master/tlpkg/tlperl0/lib/URI/rsync.pm')
-rwxr-xr-x | Master/tlpkg/tlperl0/lib/URI/rsync.pm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl0/lib/URI/rsync.pm b/Master/tlpkg/tlperl0/lib/URI/rsync.pm new file mode 100755 index 00000000000..160d9d0c065 --- /dev/null +++ b/Master/tlpkg/tlperl0/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; |