diff options
Diffstat (limited to 'Master/tlpkg/tlperl/site/lib/URI/ssh.pm')
-rw-r--r-- | Master/tlpkg/tlperl/site/lib/URI/ssh.pm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl/site/lib/URI/ssh.pm b/Master/tlpkg/tlperl/site/lib/URI/ssh.pm new file mode 100644 index 00000000000..d73448bb2ba --- /dev/null +++ b/Master/tlpkg/tlperl/site/lib/URI/ssh.pm @@ -0,0 +1,17 @@ +package URI::ssh; + +use strict; +use warnings; + +our $VERSION = '1.71'; +$VERSION = eval $VERSION; + +use parent 'URI::_login'; + +# ssh://[USER@]HOST[:PORT]/SRC + +sub default_port { 22 } + +sub secure { 1 } + +1; |