diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/ssh.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/URI/ssh.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/ssh.pm b/Master/tlpkg/tlperl/lib/URI/ssh.pm new file mode 100644 index 00000000000..1d47e4148f6 --- /dev/null +++ b/Master/tlpkg/tlperl/lib/URI/ssh.pm @@ -0,0 +1,11 @@ +package URI::ssh; +require URI::_login; +@ISA=qw(URI::_login); + +# ssh://[USER@]HOST[:PORT]/SRC + +sub default_port { 22 } + +sub secure { 1 } + +1; |