summaryrefslogtreecommitdiff
path: root/lib/URI/rsync.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/URI/rsync.pm')
-rw-r--r--lib/URI/rsync.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/URI/rsync.pm b/lib/URI/rsync.pm
new file mode 100644
index 0000000..9cb649a
--- /dev/null
+++ b/lib/URI/rsync.pm
@@ -0,0 +1,14 @@
+package URI::rsync; # http://rsync.samba.org/
+
+# rsync://[USER@]HOST[:PORT]/SRC
+
+use strict;
+use warnings;
+
+our $VERSION = "1.69";
+
+use parent qw(URI::_server URI::_userpass);
+
+sub default_port { 873 }
+
+1;