Debian lenny version packages
[pkg-perl] / deb-src / liburi-perl / liburi-perl-1.35.dfsg.1 / URI / rsync.pm
1 package URI::rsync;  # http://rsync.samba.org/
2
3 # rsync://[USER@]HOST[:PORT]/SRC
4
5 require URI::_server;
6 require URI::_userpass;
7
8 @ISA=qw(URI::_server URI::_userpass);
9
10 sub default_port { 873 }
11
12 1;