summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/URI/ssh.pm
blob: 1d47e4148f6d0a1f70bb6b4ab8c0011b0362081e (plain)
1
2
3
4
5
6
7
8
9
10
11
package URI::ssh;
require URI::_login;
@ISA=qw(URI::_login);

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

sub default_port { 22 }

sub secure { 1 }

1;