summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/URI/rsync.pm
blob: 160d9d0c065eb143a916b351b82a669ea1697321 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;