The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package URI::rsync;  # http://rsync.samba.org/

# rsync://[USER@]HOST[:PORT]/SRC

use strict;
use warnings;

use parent qw(URI::_server URI::_userpass);

sub default_port { 873 }

1;