home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / apache / files / ActivePerl-5.6.1.638-MSWin32-x86.msi / _d35b8319d5254ae60ec0a5394ae962f7 < prev    next >
Encoding:
Text File  |  2004-04-13  |  209 b   |  13 lines

  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;
  13.