summaryrefslogtreecommitdiff
path: root/lib/URI/rsync.pm
blob: f13064b9bcc4339c8b19e0164e742ac7d218aeb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package URI::rsync;  # http://rsync.samba.org/

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

use strict;
use warnings;

our $VERSION = '1.75';

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

sub default_port { 873 }

1;